Hackerrank - Remove Duplicates
Hackerrank - Problem Statement A description of the problem can be found on Hackerrank. Solution I created solution in: Scala All solutions are also available on my GitHub. Scala
1 2 3 | object RemoveDuplicates extends App { println(Console.readLine.distinct) } |