Update and rename double_linked_list.py to doubly_linked_list.py

This commit is contained in:
marina 2023-08-02 18:24:28 -07:00 committed by GitHub
parent 82ac14af5d
commit f5a30a6176
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,7 +1,6 @@
#!/usr/bin/env python3 #!/usr/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# author: bt3gl # author: bt3gl
# create a doubly linked list
class Node(): class Node():