Create a function that returns true if an input string contains only uppercase or only lowercase letters.
true
SameCase("hello") ➞ true SameCase("HELLO") ➞ true SameCase("Hello") ➞ false SameCase("ketcHUp") ➞ false
N/A