commit 5e7be60e0375a074f6f1331a93c8de7fa52d504d Author: 9TailedCryptid Date: Wed May 29 14:11:45 2019 +0800 Completed design of algorithm diff --git a/Problem 1/Algorithm_Notes.md b/Problem 1/Algorithm_Notes.md new file mode 100644 index 0000000..4ca2aeb --- /dev/null +++ b/Problem 1/Algorithm_Notes.md @@ -0,0 +1,7 @@ +jj +### Algorithm Notes For Problem 1 + +Loop through each number below 999 including 999. +For each number if the number%3 or the number%5 equals zero add the number to a list + +Upon completion of loop, sum up the numbers in the list together.