Skip to content

Commit 830db4a

Browse files
committed
Fixed minor typos
1 parent ad87c04 commit 830db4a

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

pygorithm/data_structures/linked_list.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Author: OMKAR PATHAK
2-
# Created On: 5th August July 2017
2+
# Created On: 5th August 2017
33

44
# Linked List and Node can be accomodated in separate classes for convenience
55

pygorithm/data_structures/queue.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Author: OMKAR PATHAK
2-
# Created On: 3rd August July 2017
2+
# Created On: 3rd August 2017
33

44
# queue implementation
55
class Queue(object):

pygorithm/data_structures/stack.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Author: OMKAR PATHAK
2-
# Created On: 3rd August July 2017
2+
# Created On: 3rd August 2017
33

44
# stack implementation
55
class Stack(object):
@@ -86,7 +86,7 @@ def _precedence(self, char):
8686
else:
8787
return -1
8888

89-
# function to convert infix to postfix
89+
# function to convert infix to postfix
9090
def infix_to_postfix(self):
9191
postFix = []
9292
for i in range(len(self.myExp)):

0 commit comments

Comments
 (0)