Skip to content

Commit

Permalink
Fixed Typos In the Documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
Abhijit2505 committed Aug 9, 2020
1 parent d5a1754 commit 05d9765
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 16 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,21 +68,21 @@ for i in arr1:

for i in arr2:
llist2.append(i)

sol = ll.list_algorithms()

llist3 = ll.linkedlist()
llist3.head = sol.mergeTwoLists(llist1.head,llist2.head)
llist3.printLL()
```
Input:

1 2 3
2 3 4

Output:

1 2 2 3 3 4
1 2 2 3 3 4

## License

Expand Down
36 changes: 26 additions & 10 deletions eduAlgo.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: eduAlgo
Version: 1.1.0
Version: 1.1.1
Summary: An educational Algorithmic Library
Home-page: https://github.com/Abhijit2505/eduAlgo
Author: Abhijit Tripathy
Expand Down Expand Up @@ -62,25 +62,41 @@ Description:

```python

from edualgo import algorithm as al
from edualgo import LinkedList as ll
llist1 = ll.linkedlist()
llist2 = ll.linkedlist()

arr = [5,4,3,2,1]
obj = al.sort()
sorted_arr = obj.bubble_sort(arr)
print(sorted_arr)
arr1 = list(map(int,input().split()))
arr2 = list(map(int,input().split()))

for i in arr1:
llist1.append(i)

for i in arr2:
llist2.append(i)

sol = ll.list_algorithms()

llist3 = ll.linkedlist()
llist3.head = sol.mergeTwoLists(llist1.head,llist2.head)
llist3.printLL()
```
Here is the output:
Input:

1 2 3
2 3 4

Output:

Bubble Sort Runtime = 0.0
[1, 2, 3, 4, 5]
1 2 2 3 3 4

## License

This package is under **MIT License** copyright @<a href = "https://github.com/Abhijit2505">Abhijit Tripathy</a>

Keywords: algorithms
Platform: UNKNOWN
Classifier: Development Status :: 1 - Planning
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Education
Classifier: Topic :: Education
Classifier: License :: OSI Approved :: MIT License
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

# some more details
CLASSIFIERS = [
'Development Status :: 1 - Planning',
'Development Status :: 3 - Alpha',
'Intended Audience :: Education',
'Topic :: Education',
'License :: OSI Approved :: MIT License',
Expand All @@ -19,7 +19,7 @@

# calling the setup function
setup(name='eduAlgo',
version='1.1.0',
version='1.1.1',
description='An educational Algorithmic Library',
long_description=long_description,
long_description_content_type = 'text/markdown',
Expand Down

0 comments on commit 05d9765

Please sign in to comment.