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

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

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. If none exists, output "no".

abcabd

c