Skip to content

Instantly share code, notes, and snippets.

@lifeparticle
Last active February 26, 2021 10:04
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 lifeparticle/022bd07dde206dff748c41928711f3a8 to your computer and use it in GitHub Desktop.
Save lifeparticle/022bd07dde206dff748c41928711f3a8 to your computer and use it in GitHub Desktop.
public static int countOccurrences(int values[], int target) {
return upperBound(values, target) - lowerBound(values, target);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment