由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - Leetcode 最简单的题目怎么 compile error?
相关主题
问道题leetcode的题,关于bit运算的Leetcode Divide two integers 的题
leetcode上遇到的问题3sum on LeetCode OJ
Why leetcode AC rate is so high.leetcode container with most water
a problem from leetcode: high efficiency algorithm for combinations problem请教一道Leetcode 题, 多谢
a question about bits operation关于leetcode的combinationSum题
Apple Siri 组 Java 测试题leetcode 上的 two sum
一个小问题,请高人指点!leetcode divde 2 integers 算法局限
sleetcode中的online judge都报runtime error, 用本地编译器执行一些例子都okleetcode一道题
相关话题的讨论汇总
话题: compile话题: xor话题: leetcode话题: error话题: integer
进入JobHunting版参与讨论
1 (共1页)
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
2
不许 import 任何 module?
c********l
发帖数: 8138
3
compile error怎么说的?
r****t
发帖数: 10904
4
求如何看 compile error 细节? 我看到的就只有这两个词,没有 trace.

【在 c********l 的大作中提到】
: compile error怎么说的?
1 (共1页)
进入JobHunting版参与讨论
相关主题
leetcode一道题a question about bits operation
leetcode 4sum N^3解法有时Time Limit Exceeded有时又能通过Apple Siri 组 Java 测试题
请教leetcode一道题一个小问题,请高人指点!
First Missing Positive on Leetcodesleetcode中的online judge都报runtime error, 用本地编译器执行一些例子都ok
问道题leetcode的题,关于bit运算的Leetcode Divide two integers 的题
leetcode上遇到的问题3sum on LeetCode OJ
Why leetcode AC rate is so high.leetcode container with most water
a problem from leetcode: high efficiency algorithm for combinations problem请教一道Leetcode 题, 多谢
相关话题的讨论汇总
话题: compile话题: xor话题: leetcode话题: error话题: integer