Problem: Remove Every Third Element
val labels = Seq("hello", "world", "Boston", "Warsaw", "London")
def removeThirds(labels: Seq[String]): Seq[String] = ???
val result = removeThirds(labels)
// Seq("hello", "world", "warsaw")
// Hint: Use zipWithIndex and filterNot