Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
alvin-the-programmer authored May 11, 2020
1 parent 80b7c4b commit 8d30043
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions 03_loops/C_loops_exercise/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ Create a `divisible-range.js` file and solve the function below:
// function should print all numbers between `min` and `max` (exclusive) that are also divisible by
// num.

console.log(divisibleRange(17, 40, 9));
divisibleRange(17, 40, 9);
// prints
// 18
// 27
// 36

console.log(10, 24, 4);
divisibleRange(10, 24, 4);
// prints
// 12
// 16
Expand Down

0 comments on commit 8d30043

Please sign in to comment.