mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-27 15:01:08 +00:00
Fixing print statement
This commit is contained in:
parent
e15c0aacc9
commit
fa1e65ee0f
|
@ -68,8 +68,7 @@ class Heap:
|
||||||
curr = curr/2
|
curr = curr/2
|
||||||
|
|
||||||
def display(self):
|
def display(self):
|
||||||
for item in self.h:
|
print (self.h)
|
||||||
print item,
|
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
l = list(map(int,raw_input().split()))
|
l = list(map(int,raw_input().split()))
|
||||||
|
|
Loading…
Reference in New Issue
Block a user