algorithms decision

Solutions on MaxInterview for algorithms decision by the best coders in the world

showing results for - "algorithms decision"
Antonio
04 Aug 2020
1public boolean containsGreaterThanHundred(List<Integer> numbers) {
2    for (Integer i : numbers) {
3        if (i > 100) {
4            return true;
5        }
6    }
7    return false;
8}
similar questions
queries leading to this page
algorithms decision