I am not really sure how this code works:
public static boolean isUniqueChar2(String str) {
int checker = 0;
for (int i = 0; i < str.length(); ++i) {
int val = str.charAt(i) - 'a';
System.out.println(str.charAt(i) );
System.out.println(val);
if ((checker & (1 << val)) > 0)
return false;
checker |= (1 << val);
}
return true;
}
In particular I do not understand particular >> operator and the role of checker

>>operation in your code ? – NullPointerException Dec 20 '12 at 23:51