我想编写一个函数来搜索列表并查找此列表中是否有任何重复值。该函数应返回一个布尔值。这是我所在的位置,但这不起作用...
fun myFunc [] = true
myFunc(x::xs) =
if(x=myFunc(xs)) then false
else myFunc(xs);
[1,2,2,3,4,5,6] should return true
[1,2,3,4,5,6,7] should return false
[1,2,3,4,5,6,1] should return true
谢谢!