牛客python写代码,经常莫名其妙有错,代码应该错
一个翻转链表的题
class Solution:
# 返回ListNode
def ReverseList(self, pHead):
# write code here
if not pHead or not pHead.next:
return pHead
reHead=None
while pHead:
p=pHead
pHead=pHead.next
p.next=reHead
reHead=p
return reHead
一直数组越界什么的
后来我在讨论区拷贝了别人的代码,几乎一样,通过了,然后我再把自己的贴上去提交,特么通过了!问下用PYTHON写的同学们,会经常本地通过OJ不过嘛?刷了几题都出现这情况。之前我用C++刷的
略感麻烦,转用PYTHON 特么更麻烦了