Skip to content

Commit 389d60d

Browse files
authored
Update circular_linked_list.py
1 parent d8941ef commit 389d60d

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

LinkedLists all Types/circular_linked_list.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
from turtle import mode
2-
1+
'''Author - Mugen https://github.com/Mugendesu'''
32

43
class Node :
54
def __init__(self , data , next = None):
@@ -131,4 +130,4 @@ def main():
131130

132131

133132
if __name__ == '__main__':
134-
main()
133+
main()

0 commit comments

Comments
 (0)