题目:原题链接(简单)

标签:字符串

解法 时间复杂度 空间复杂度 执行用时
Ans 1 (Python) O ( N ) O(N) O(N) O ( N ) O(N) O(N) 32ms (95.33%)
Ans 2 (Python)
Ans 3 (Python)

解法一:

class Solution:
    def isUnique(self, astr: str) -> bool:
        return len(astr) == len(set(astr))