r****t 发帖数: 10904 | 1 from operator import xor
class Solution:
# @param A, a list of integer
# @return an integer
def singleNumber(self, A):
return reduce(xor, A) | r****t 发帖数: 10904 | | c********l 发帖数: 8138 | | r****t 发帖数: 10904 | 4 求如何看 compile error 细节? 我看到的就只有这两个词,没有 trace.
【在 c********l 的大作中提到】 : compile error怎么说的?
|
|