
class Solution {
public boolean canWinNim(int n) {
return n%4!=0;
}
}
class Solution(object):
def canWinNim(self, n):
return n%4!=0
bool canWinNim(int n) {
return n%4!=0;
}
class Solution {
public:
bool canWinNim(int n) {
return n%4!=0;
}
};
public class Solution {
public bool CanWinNim(int n) {
return n%4!=0;
}
}
var canWinNim = function(n) {
return n%4!=0;
};
func canWinNim(n int) bool {
return n%4!=0;
}
2668

被折叠的 条评论
为什么被折叠?



