Created
September 17, 2023 06:52
-
-
Save h-hub/7cb524f1c6035bf8758f5a511216663c to your computer and use it in GitHub Desktop.
Revisions
-
h-hub created this gist
Sep 17, 2023 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,11 @@ //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; } }