🌈 搜索
📅  最后修改于: 2022-03-11 14:53:35.229000             🧑  作者: Mango
removeItem _ [] = [] removeItem x (y:ys) | x == y = removeItem x ys | otherwise = y : removeItem x ys