如果我有 5 个整数(a、b、c、d、e),我可以检查其中至少3 个是否相等的最短方法是什么。
前任。
a==1
b==1
c==2
d==3
e==4
//returns false
ex.
a==1
b==1
c==1
d==3
e==4
//returns true
如果我有 5 个整数(a、b、c、d、e),我可以检查其中至少3 个是否相等的最短方法是什么。
前任。
a==1
b==1
c==2
d==3
e==4
//returns false
ex.
a==1
b==1
c==1
d==3
e==4
//returns true