Skip to content

Commit 53c4ed0

Browse files
author
Ian Doarn
authored
Merge branch 'master' into master
2 parents 55cba7d + f0a2afc commit 53c4ed0

File tree

8 files changed

+12
-9
lines changed

8 files changed

+12
-9
lines changed

pygorithm/__init__.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,13 @@
2727
Emil 'Skeen' Madsen
2828
Ian 'IanDoarn' Doarn
2929
Timothy 'Tjsretchalot' Moore
30+
Sharad 'sharadbhat' Bhat
31+
Alexey 'aesee' Sarapulov
32+
Anthony 'MrDupin' Marakis
3033
3134
"""
3235

33-
__version__ = '1.0.3'
36+
__version__ = '1.0.0'
3437
__author__ = 'Omkar Pathak'
3538

3639
# List maintainers here
@@ -65,5 +68,5 @@
6568
'sorting',
6669
'string',
6770
'pathfinding'
68-
'geometry',
71+
'geometry'
6972
]

pygorithm/data_structures/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,3 @@
1717
'stack',
1818
'tree',
1919
'trie'
20-
]

pygorithm/fibonacci/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@
1111
'goldenratio',
1212
'memoization',
1313
'recursion'
14-
]
14+
]

pygorithm/geometry/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55

66
__all__ = [
77
'rect_broad_phase'
8-
]
8+
]

pygorithm/math/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,5 @@
1313
'lcm_using_gcd',
1414
'lcm',
1515
'sieve_of_eratosthenes'
16-
]
16+
]
17+

pygorithm/pathfinding/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@
77
__all__ = [
88
'astar',
99
'dijkstra'
10-
]
10+
]

pygorithm/sorting/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@
2121
'quick_sort',
2222
'selection_sort',
2323
'shell_sort'
24-
]
24+
]

pygorithm/string/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@
1111
'pangram',
1212
'isogram',
1313
'palindrome'
14-
]
14+
]

0 commit comments

Comments
 (0)