Q:

Write a method that returns the nth odd element of a list. If the index of the element exceeds the list size, then return -1

belongs to collection: java exercises (easy level )

2

Write a method that returns the nth odd element of a list. If the index of the element exceeds the list size, then return -1.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

public Integer getElement(List<Integer> list, Integer n) {
int elementIndex = 2 * (n-1);
return elementIndex > list.size() - 1 ? -1 : list.get(elementIndex);
}

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Write a method that returns the number of nodes in... >>
<< Convert to Upper Case (Java 8 Lambdas and Streams...