From 5e7be60e0375a074f6f1331a93c8de7fa52d504d Mon Sep 17 00:00:00 2001 From: 9TailedCryptid Date: Wed, 29 May 2019 14:11:45 +0800 Subject: [PATCH] Completed design of algorithm --- Problem 1/Algorithm_Notes.md | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 Problem 1/Algorithm_Notes.md 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.