#T608. 找第一个只出现一次的字符

找第一个只出现一次的字符

Description

Given a string containing only lowercase letters, find the first character that appears only once. If there is no such character, output "no".

Input Format

A string with length less than 100,000.

Output Format

Output the first character that appears only once, or output "no" if none exists.

```input1 abcabd

```output1
c

来源

CodesOnline