leetcode_python
leetcode_python copied to clipboard
Two Sum 解决方法优化
return sorted([posi, i]),这里不需要sorted吧,直接return [i, posi],顺序肯定是升序的