forked from Peefy/IntroductionToAlgorithm.Python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.py
More file actions
92 lines (54 loc) · 2.65 KB
/
__init__.py
File metadata and controls
92 lines (54 loc) · 2.65 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
'''
This packet includes IntroductionToAlgorithm.Python notes of each chapter
'''
LAST_CHAPTER = 34
__all__ = ['Chapter1', 'Chapter2', 'Chapter2_3',
'Chapter3_1', 'Chapter3_2', 'Chapter4_1',
'Chapter4_2', 'Chapter4_3', 'Chapter4_4',
'Chapter5_1', 'Chapter5_2', 'Chapter5_3',
'Chapter5_4', 'chapter6_printall']
for i in range(7, LAST_CHAPTER + 1):
__all__.append('printchapter{}note'.format(i))
from .chapter1.chapter1_1 import Chapter1
from .chapter2.chapter2 import Chapter2
from .chapter2.chapter2_3 import Chapter2_3
from .chapter3.chapter3_1 import Chapter3_1
from .chapter3.chapter3_2 import Chapter3_2
from .chapter4.chapter4_1 import Chapter4_1
from .chapter4.chapter4_2 import Chapter4_2
from .chapter4.chapter4_3 import Chapter4_3
from .chapter4.chapter4_4 import Chapter4_4
from .chapter5.chapter5_1 import Chapter5_1
from .chapter5.chapter5_2 import Chapter5_2
from .chapter5.chapter5_3 import Chapter5_3
from .chapter5.chapter5_4 import Chapter5_4
from .chapter6.test import chapter6_printall
from .chapter7.chapter7note import printchapter7note
from .chapter8.chapter8note import printchapter8note
from .chapter9.chapter9note import printchapter9note
from .chapter10.chapter10note import printchapter10note
from .chapter11.chapter11note import printchapter11note
from .chapter12.chapter12note import printchapter12note
from .chapter13.chapter13note import printchapter13note
from .chapter14.chapter14note import printchapter14note
from .chapter15.chapter15note import printchapter15note
from .chapter16.chapter16note import printchapter16note
from .chapter17.chapter17note import printchapter17note
from .chapter18.chapter18note import printchapter18note
from .chapter19.chapter19note import printchapter19note
from .chapter20.chapter20note import printchapter20note
from .chapter21.chapter21note import printchapter21note
from .chapter22.chapter22note import printchapter22note
from .chapter23.chapter23note import printchapter23note
from .chapter24.chapter24note import printchapter24note
from .chapter25.chapter25note import printchapter25note
from .chapter26.chapter26note import printchapter26note
from .chapter27.chapter27note import printchapter27note
from .chapter28.chapter28note import printchapter28note
from .chapter29.chapter29note import printchapter29note
from .chapter30.chapter30note import printchapter30note
from .chapter31.chapter31note import printchapter31note
from .chapter32.chapter32note import printchapter32note
from .chapter33.chapter33note import printchapter33note
from .chapter34.chapter34note import printchapter34note
from .chapter35.chapter35note import printchapter35note