Corrected a few C'isms and also added the solutions to four more problems
This commit is contained in:
@@ -28,7 +28,7 @@ queue = collections.deque()
|
||||
for i in range(0, 13):
|
||||
queue.append(number[i])
|
||||
|
||||
max_product = 0;
|
||||
max_product = 0
|
||||
for i in range(13, 1000):
|
||||
product = 1
|
||||
for q in queue:
|
||||
|
||||
Reference in New Issue
Block a user