Skip to content

Instantly share code, notes, and snippets.

@adammenges
Last active December 22, 2015 13:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save adammenges/6478512 to your computer and use it in GitHub Desktop.
Save adammenges/6478512 to your computer and use it in GitHub Desktop.
public boolean inUnique(string str) {
boolean[] chars = new boolean[256]; // Size only works with ASCII, increase otherwise.
for(int i=0; i<str.size(); i++){
if(chars[str.charAt(i)]) return false;
chars[str.charAt(i)] = true;
}
return true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment