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
66 lines (57 loc) · 1.46 KB
/
Copy path__init__.py
File metadata and controls
66 lines (57 loc) · 1.46 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
"""
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
"""
from pygorithm import data_structures
from pygorithm import fibonacci
from pygorithm import math
from pygorithm import searching
from pygorithm import sorting
__version__ = '1.0.0'
__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"
]
__all__ = [
'data_structures',
'fibonacci',
'math',
'searching',
'sorting'
]