0x01 List.remove报错
error: value remove is not a member of List[String]
改用: List.filterNot
strings = List("one", "one", "two", "one)
需要删除所有的“two”
strings.filterNot(s => s=="two")