Netcracker Technology Interview Question

Remove duplicate characters from a string

Interview Answer

Anonymous

Mar 29, 2021

Convert the string to a character array and then put 2 for loops (outer to iterate over the array & inner to compare duplicates and if found ignore them)