Skip to content

Commit

Permalink
Fixing print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
Ankit Agarwal committed Apr 1, 2017
1 parent e15c0aa commit fa1e65e
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions data_structures/Heap/heap.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,7 @@ def insert(self,data):
curr = curr/2

def display(self):
for item in self.h:
print item,
print (self.h)

def main():
l = list(map(int,raw_input().split()))
Expand Down

0 comments on commit fa1e65e

Please sign in to comment.