I have a list of tuples in Scala:
("BLUE", 2, 4)
("RED", 2, 29)
("GREEN", 29, 0)
("RED", 18, 2)
This list is quite long. I'm looking for an efficient list operation that would give me a list of unique colors (the first string in the tuple). In other words, I'm looking for this:
List("RED", "BLUE", "GREEN")
Order doesn't really matter to me. I know that this can be accomplished iteratively, but I'm looking to learn functional programming and I'm not sure how to do this with an operation.
Thank you!
How about:
tupleList.map(_._1).distinct