You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
challenges/6/main.py

7 lines
148 B

2 years ago
nums = [i for i in range(1, 100+1)]
square_of_sums = sum(nums)**2
sum_of_squares = sum([i**2 for i in nums])
print(square_of_sums-sum_of_squares)