Rearrange the chapters.
Start to translate codes from Java to Python.
This commit is contained in:
10
codes/python/chapter_array_and_linkedlist/linked_list.py
Normal file
10
codes/python/chapter_array_and_linkedlist/linked_list.py
Normal file
@@ -0,0 +1,10 @@
|
||||
'''
|
||||
File: linked_list.py
|
||||
Created Time: 2022-11-25
|
||||
Author: Krahets (krahets@163.com)
|
||||
'''
|
||||
|
||||
import sys, os.path as osp
|
||||
sys.path.append(osp.dirname(osp.dirname(osp.abspath(__file__))))
|
||||
from include import *
|
||||
|
10
codes/python/chapter_array_and_linkedlist/list.py
Normal file
10
codes/python/chapter_array_and_linkedlist/list.py
Normal file
@@ -0,0 +1,10 @@
|
||||
'''
|
||||
File: list.py
|
||||
Created Time: 2022-11-25
|
||||
Author: Krahets (krahets@163.com)
|
||||
'''
|
||||
|
||||
import sys, os.path as osp
|
||||
sys.path.append(osp.dirname(osp.dirname(osp.abspath(__file__))))
|
||||
from include import *
|
||||
|
10
codes/python/chapter_array_and_linkedlist/my_list.py
Normal file
10
codes/python/chapter_array_and_linkedlist/my_list.py
Normal file
@@ -0,0 +1,10 @@
|
||||
'''
|
||||
File: my_list.py
|
||||
Created Time: 2022-11-25
|
||||
Author: Krahets (krahets@163.com)
|
||||
'''
|
||||
|
||||
import sys, os.path as osp
|
||||
sys.path.append(osp.dirname(osp.dirname(osp.abspath(__file__))))
|
||||
from include import *
|
||||
|
Reference in New Issue
Block a user