Add python solutions for first 10 problems

This commit is contained in:
2019-09-19 15:09:43 +02:00
parent 9fc4448a51
commit f165876a20
12 changed files with 366 additions and 1 deletions

View File

@ -29,7 +29,7 @@ int main(int argc, char **argv)
elapsed = (end.tv_sec - start.tv_sec) + (double)(end.tv_nsec - start.tv_nsec) / 1000000000;
printf("Project Euler, Problem 4\n");
printf("Answer: %d \n", max);
printf("Answer: %d\n", max);
printf("Elapsed time: %.9lf seconds\n", elapsed);