26. Builtin sum vs np.sum

Easy

Return a tuple (builtin, numpy) where builtin = sum(range(5), -1) (Python's sum with start value -1) and numpy = np.sum(range(5), -1) (here -1 is the axis).

Implement solve(...)