We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
当链表执行完clear方法时 assert list(ll)==[] 错误
AttributeError: 'NoneType' object has no attribute 'value'
应当在iter_node中加入判断
if self.tailnode is None: return None
在clear()中加入
self.tailnode = None
The text was updated successfully, but these errors were encountered:
修复 链表 clear 和 iter_node bug
07ad56e
#11
hi,感谢提出。这里确实有问题。已经修改并补充单测, MR:07ad56e
Sorry, something went wrong.
No branches or pull requests
当链表执行完clear方法时 assert list(ll)==[] 错误
应当在iter_node中加入判断
在clear()中加入
The text was updated successfully, but these errors were encountered: