I am reviewing this code, but I am not sure what _ = input()
is for in python.
Here you are the code:
class Difference:
def __init__(self, a):
self.__elements = a
self.maximumDifference = 0
# End of Difference class
_ = input()
a = [int(e) for e in input().split(' ')]
d = Difference(a)
d.computeDifference()
print(d.maximumDifference)