Skip to content

Instantly share code, notes, and snippets.

@h-hub
Created September 17, 2023 09:06
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 h-hub/9bece4f5e14ef373b8cecd6f40646033 to your computer and use it in GitHub Desktop.
Save h-hub/9bece4f5e14ef373b8cecd6f40646033 to your computer and use it in GitHub Desktop.
static boolean isElementExistProper(int[] ints, int b){
int i=0;
while (true){
if(ints.length==i) return false;
if(ints[i++]==b) return true;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment