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