Answers for "how to check if number is in array in java"

1

check if array contains a number in java

public static boolean contains(final int[] arr, final int key) {
    return Arrays.stream(arr).anyMatch(i -> i == key);
}
Posted by: Guest on May-24-2021
2

java check if element exists in array

// Convert to stream and test it
	boolean result = Arrays.stream(alphabet).anyMatch("A"::equals);
	if (result) {
		System.out.println("Hello A");
	}
Copy
Posted by: Guest on April-07-2020

Code answers related to "how to check if number is in array in java"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language