leetcode_python icon indicating copy to clipboard operation
leetcode_python copied to clipboard

Two Sum 解决方法优化

Open ghost opened this issue 6 years ago • 0 comments

return sorted([posi, i]),这里不需要sorted吧,直接return [i, posi],顺序肯定是升序的

ghost avatar Jan 30 '19 09:01 ghost