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

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

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 a length less than 100,000.

Output Format

Output the first character that appears only once, or output `no` if there is none.

```input1 abcabd

```output1
c

译文

CodesOnline