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

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

Description

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

Input Format

A string with length less than 100000.

Output Format

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

```input1 abcabd

```output1
c

Source

CodesOnline