Update linkedlist_stack.py

This commit is contained in:
Yudong Jin 2022-11-29 23:11:54 +08:00 committed by GitHub
parent 60cb2ffc97
commit b1b5094436
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -52,7 +52,7 @@ class LinkedListStack:
while temp: while temp:
stack.append(temp.val) stack.append(temp.val)
temp = temp.next temp = temp.next
stack = stack[::-1] stack.reverse()
return stack return stack