[LeetCode]Python: NameError:xxx is not defined

参考:https://stackoverflow.com/questions/24291941/python-nameerror-global-name-sortlist-is-not-defined-during-recursion

因为LeetCode提交代码是使用类,因此定义的方法不是全局变量需要在前面加self,例如self.foo()这样

相关推荐