Skip to content

Instantly share code, notes, and snippets.

View GuiSim's full-sized avatar
🐼

Guillaume Simard GuiSim

🐼
  • Tola
  • Québec
View GitHub Profile
class HistogramProblem(object):
def __init__(self, arr):
self.arr = arr
def water_in_range(self, left, right):
count = 0
minimum = min(self.arr[left], self.arr[right])
for i in range(left+1, right+1):