0x01 List.remove報錯spa
error: value remove is not a member of List[String]
改用: List.filterNot code
strings = List("one", "one", "two", "one)
須要刪除全部的「two」blog
strings.filterNot(s => s=="two")