mirror of
https://bitbucket.org/Mattrixwv/projecteulerpython.git
synced 2026-02-03 19:52:28 -05:00
Updated Algorithms
This commit is contained in:
@@ -32,7 +32,7 @@ class Problem28(Problem):
|
|||||||
#Functions
|
#Functions
|
||||||
#Constructor
|
#Constructor
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
super().__init__("What is the sum of the numbers on the diagonals in a 1001 by 1001 spiral formed by starting with the number 1 and moving to the right in a clockwise direction a 5 by 5 spiral")
|
super().__init__("What is the sum of the numbers on the diagonals in a 1001 by 1001 spiral formed by starting with the number 1 and moving to the right in a clockwise direction?")
|
||||||
self.sumOfDiagonals = 0
|
self.sumOfDiagonals = 0
|
||||||
|
|
||||||
#Operational functions
|
#Operational functions
|
||||||
|
|||||||
@@ -37,6 +37,7 @@ class Problem30(Problem):
|
|||||||
def __init__(self):
|
def __init__(self):
|
||||||
super().__init__("Find the sum of all the numbers that can be written as the sum of the fifth powers of their digits.")
|
super().__init__("Find the sum of all the numbers that can be written as the sum of the fifth powers of their digits.")
|
||||||
self.sumOfFifthNumbers = [] #This is an ArrayList of the numbers that are the sum of the fifth power of their digits
|
self.sumOfFifthNumbers = [] #This is an ArrayList of the numbers that are the sum of the fifth power of their digits
|
||||||
|
self.sum = 0 #This is the sum of the sumOfFifthNumbers list
|
||||||
|
|
||||||
#Operational function
|
#Operational function
|
||||||
#Solve the problem
|
#Solve the problem
|
||||||
|
|||||||
Reference in New Issue
Block a user