Create a function that accepts a string as an argument and returns the first non-repeated character.
firstNonRepeatedCharacter("g") ➞ "g"
firstNonRepeatedCharacter("it was then the frothy word met the round night") ➞ "a"
firstNonRepeatedCharacter("the quick brown fox jumps then quickly blows air") ➞ "f"
firstNonRepeatedCharacter("hheelloo") ➞ false
firstNonRepeatedCharacter("") ➞ false
false.false.