# Challenge \#8: đ Find the unique toy
EASY
Santa đ
wants to know what the first non-repeated letter is in a toy's name đ.
Write a function that takes a `string` and returns the first letter that is not repeated, ignoring uppercase and lowercase when counting, but returning the letter as it appears in the string.
If there is none, return an empty string ("").
Examples:
```js
findUniqueToy('Gift') // 'G'
// âšī¸ The G is the first letter that is not repeated
// and we return it exactly as it appears
findUniqueToy('sS') // ''
// âšī¸ The letters are repeated, since it doesn't distinguish uppercase
findUniqueToy('reindeeR') // 'i'
// âšī¸ The r is repeated (even if it's uppercase)
// and the e as well, so the first one is 'i'
// More cases:
findUniqueToy('AaBbCc') // ''
findUniqueToy('abcDEF') // 'a'
findUniqueToy('aAaAaAF') // 'F'
findUniqueToy('sTreSS') // 'T'
findUniqueToy('z') // 'z'
```Your battle is waiting in the queue. It will start automatically when a slot becomes available.