Practice Interview Questions
| Question | Status |
|---|---|
Given a string, write a function to determine if it contains only unique characters. If all characters are unique, return True; otherwise, return False.
Example:
Input: "abcde"
Output: True
The function should return True because all characters are unique.
Input: "aabcde"
Output: False
The function should return False because 'a' is repeated.
Constraints: