Skip to content

Instantly share code, notes, and snippets.

@mm909
Created April 16, 2020 05:30
Show Gist options
  • Save mm909/e03cff0987f6e871af5071ff915944a5 to your computer and use it in GitHub Desktop.
Save mm909/e03cff0987f6e871af5071ff915944a5 to your computer and use it in GitHub Desktop.
1.1.3
def isUnique(str):
str = heapsort(str)
for i, char in enumerate(str[:-1]):
if char == str[i+1]:
return False
return True
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment