Suppose I have
val dirty = List("a", "b", "a", "c")
Is there a list operation that returns "a", "b", "c"
|
Suppose I have
Is there a list operation that returns "a", "b", "c" |
|||
|
|
|
Have a look at the ScalaDoc for Seq,
Update. Others have suggested using |
|||||
|
|
Before using Kitpon's solution, think about using a As most list operations ( |
||||
|
|
|
Using Set in the first place is the right way to do it, of course, but:
Works. Or just |
|||||
|