答案 0 :(得分:0)
你可以强迫它
take the first element
loop through the array
return false if the element equals any other element
move to the second element
loop through the array
return false if the element equals any other element
move to the third element
...
After the loop is finished, return true
这个算法基本上是强力搜索,它不是很有效,O(n!),如果我没记错的话,但它会做你需要的。如果你愿意创建一个BST,你可以减少时间,如果你正在寻找双打或整体。