Accenture Interview Question

To modify an array consisting of duplicate elements into an array with unique elements only. May be written in a common programming language.

Interview Answer

Anonymous

Feb 18, 2016

Took 1 hour to write to code. Declared an array. On every iteration the program checks the element if already on the array. If not, write to the array. Return the array of unique elements. Written in java.

1