Skip to content

Remove some print statements within algorithmic functions #7499

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 14 commits into from
Oct 22, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove print statement in __init__
  • Loading branch information
tianyizheng02 committed Oct 22, 2022
commit 4aee01bef1b7d120ab5e94bd9901819df2729345
1 change: 0 additions & 1 deletion dynamic_programming/longest_sub_array.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ class SubArray:
def __init__(self, arr):
# we need a list not a string, so do something to change the type
self.array = arr.split(",")
print(("the input array is:", self.array))

def solve_sub_array(self):
rear = [int(self.array[0])] * len(self.array)
Expand Down