java | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

java

hi everyone i have two questions i need your help programmers 1) How to remove duplicates from an array of Integers, without using API methods in Java? 2) Code to implement binary search in Java?

24th Feb 2017, 10:56 AM
sifundo ngubane
sifundo ngubane - avatar
1 Answer
+ 6
1) Do you mean ArrayList<Integer>? You have to use an iterator to remove the current element. Integer.equals(yourInteger) will test equality. You need a nested loop to test all elements, outer loop iterates the elements and inner loop tests if the current element is equal to another in your list. Would be easier to use a collection that only saves unique elements...
24th Feb 2017, 11:56 AM
Tashi N
Tashi N - avatar