Merge pull request #315 from liaozd/python-opt
nums为一个list,不需要判断为空就可以做join
This commit is contained in:
commit
65b185b92c
@ -106,10 +106,7 @@ class SinglyLinkedList:
|
||||
while current:
|
||||
nums.append(current.data)
|
||||
current = current._next
|
||||
if len(nums) > 0:
|
||||
return "->".join(str(num) for num in nums)
|
||||
else:
|
||||
return ""
|
||||
return "->".join(str(num) for num in nums)
|
||||
|
||||
# 重写__iter__方法,方便for关键字调用打印值
|
||||
def __iter__(self):
|
||||
|
Loading…
Reference in New Issue
Block a user