Completed design of algorithm

This commit is contained in:
9TailedCryptid 2019-05-29 14:11:45 +08:00
commit 5e7be60e03

View File

@ -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.