Skip to content

Instantly share code, notes, and snippets.

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