C++-字符串-找第一个只出现一次的字符(拓展03-找到第一个只出现一次的字符,字母不区分大小写)
You cannot submit for this problem because the contest is ended. You can click "Open in Problem Set" to view this problem in normal mode.
Background
Description
找第一个只出现一次的字符。给定一个只包含大小写字母的字符串,请你找到第一个仅出现一次的字符(以小写体现)。如果没有,输出no。
Format
Input
Output
Samples
AbacCD
b
ABC
a
AacBbC
no
Limitation
1s, 1024KiB for each test case.