0
/ 1.0
this method accepts a String object as a parameter. It returns true if the String has all unique characters, false otherwise. For...
this method accepts a String object as a parameter. It returns true if the String has all unique characters, false otherwise. For example, if the String is "coding", the method returns true; if the String is "Lambda", the method returns false. The method should return true if the the length of the String is less than 1.
Examples:
isUniqueString("coding") -> true
isUniqueString("Lambda") -> false
Your feedback will appear here when you check your answer.