class Solution:
def isUnique(self , str: str) -> bool:
# write code here
for i in str:
if str.count(i)>1:
return False
else:
continue
return True
class Solution:
def isUnique(self , str: str) -> bool:
# write code here
for i in str:
if str.count(i)>1:
return False
else:
continue
return True