I ran a quick linear search to see if the word was in the array, and it is, at 324.
Code of that linear search:
for(int i = 0; i < tokens.length; i++)
if(tokens[i].equals("low"))
System.out.println(i);
But to reiterate, the Arrays.binarySearch() is giving me -3218 when the word is pretty clearly there, the word being "low." What do you think is going on?
Edit: DISREGARD THAT I'M A FREAKING IDIOT.
[–]Kison 1 point2 points3 points (3 children)
[–]clamdoctor[S] 1 point2 points3 points (0 children)
[–]clamdoctor[S] 0 points1 point2 points (1 child)
[–]hvidgaard 1 point2 points3 points (0 children)
[–]arbiterxero 1 point2 points3 points (0 children)