Deloitte Interview Question

Write a method to remove even numbers from list without using any other collection.

Interview Answers

Anonymous

May 26, 2017

remove elements from last index (bottom to top iteration using for loop)

1

Anonymous

May 6, 2017

Make us of iterator.

9