forked from OmkarPathak/pygorithm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.py
More file actions
75 lines (66 loc) · 1.64 KB
/
__init__.py
File metadata and controls
75 lines (66 loc) · 1.64 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
"""
Pygorithm
A Python module to learn all the major algorithms on the go!
Purely for educational purposes
If you have found my software to be of any use to you,
do consider helping me pay my internet bills.
This would encourage me to create many such softwares :)
PayPal -> https://paypal.me/omkarpathak27
INR - > https://www.instamojo.com/@omkarpathak/
CONTRIBUTORS:
Mohamed 'MohamedKiouaz' Kiouaz
Ashutosh 'ashu01' Gupta
Allston 'AllstonMickey' Mickey
Dmytro 'dmytrostriletskyi' Striletskyi
Emett 'the-kid89' Speer
Viktor 'vhag' Hagstrom
Dion 'kingdion' Misic
Chandan 'crowchirp' Rai
Jae Hyeon 'skystar-p' Park
dstark85
Songzhuozhuo 'souo'
Emil 'Skeen' Madsen
Ian 'IanDoarn' Doarn
Timothy 'Tjsretchalot' Moore
Sharad 'sharadbhat' Bhat
Alexey 'aesee' Sarapulov
Anthony 'MrDupin' Marakis
"""
__version__ = '1.0.3'
__author__ = 'Omkar Pathak'
# List maintainers here
__maintainers__ = [
'Omkar Pathak'
]
# List contributors here
__contributors__ = [
"Omkar 'OmkarPathak' Pathak"
"Mohamed 'MohamedKiouaz' Kiouaz",
"Ashutosh 'ashu01' Gupta",
"Allston 'AllstonMickey' Mickey",
"Dmytro 'dmytrostriletskyi' Striletskyi",
"Emett 'the-kid89' Speer",
"Viktor 'vhag' Hagstrom",
"Dion 'kingdion' Misic",
"Chandan 'crowchirp' Rai",
"Jae Hyeon 'skystar-p' Park",
"dstark85",
"Songzhuozhuo 'souo'",
"Emil 'Skeen' Madsen",
"Ian 'IanDoarn' Doarn",
"Timothy 'Tjstretchalot' Moore",
"Sharad 'sharadbhat' Bhat"
]
__all__ = [
'binary',
'data_structures',
'dynamic_programming',
'fibonacci',
'math',
'searching',
'sorting',
'strings',
'pathfinding'
'geometry',
'greedy_algorithm'
]