What does this code print?
boolean result = LongStream
.rangeClosed(1, 100_000)
.anyMatch(val -> val == 100_000);
System.out.println(result);What does this code print?
boolean result = LongStream
.rangeClosed(1, 100_000)
.anyMatch(val -> val == 100_000);
System.out.println(result);Create a free account to access the full topic