Skip to content

Commit

Permalink
added missing statement in dyn_prog_tricks
Browse files Browse the repository at this point in the history
  • Loading branch information
xtof-durr committed Jan 5, 2024
1 parent f44a923 commit 6f7c8c5
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tryalgo/dyn_prog_tricks.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ def opt_bin_search_tree1(freq):
if __name__ == "__main__":

def readint(): return int(sys.stdin.readline())
def readstr(): return sys.stdin.readline().strip()
def readfloats(): return list(map(float, readstr().split()))

n = readint()
Expand Down

0 comments on commit 6f7c8c5

Please sign in to comment.