From f45c0c5b5d922089151abff0ec231bdb335d70c9 Mon Sep 17 00:00:00 2001 From: Dulanga Dasanayake Date: Wed, 5 Feb 2025 21:46:15 +0530 Subject: [PATCH] Update 32_stonks.py This version works even all numbers were negative. If you keep mx=0 when all numbers are in list are negative it will output 0. --- 6-functions/32_stonks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/6-functions/32_stonks.py b/6-functions/32_stonks.py index d2ba9d6..08f0721 100644 --- a/6-functions/32_stonks.py +++ b/6-functions/32_stonks.py @@ -7,7 +7,7 @@ def price_at(i): return stock_prices[i-1] def max_price(a, b): - mx = 0 + mx = price_at(a) for i in range(a, b + 1): mx = max(mx, price_at(i)) return mx