Created
January 24, 2010 17:14
-
-
Save ekohl/285319 to your computer and use it in GitHub Desktop.
Euler problem 6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
""" | |
The sum of the squares of the first ten natural numbers is, | |
1^2 + 2^2 + ... + 10^2 = 385 | |
The square of the sum of the first ten natural numbers is, | |
(1 + 2 + ... + 10)^2 = 55^2 = 3025 | |
Hence the difference between the sum of the squares of the first ten natural | |
numbers and the square of the sum is 3025 - 385 = 2640. | |
Find the difference between the sum of the squares of the first one hundred | |
natural numbers and the square of the sum. | |
""" | |
square = lambda x: x*x | |
sum_square = lambda m: sum(map(square, xrange(m+1))) | |
square_sum = lambda m: square(sum(xrange(m+1))) | |
difference = lambda m: square_sum(m) - sum_square(m) | |
print difference(100) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment