You are viewing a single comment's thread. Return to all comments →
My python solution:
def computeDifference(self): self.maximumDifference = max(self.__elements) - min(self.__elements)
Seems like cookies are disabled on this browser, please enable them to open this website
Day 14: Scope
You are viewing a single comment's thread. Return to all comments →
My python solution: