Skip to content

Commit 116c2fc

Browse files
authored
Fix clashing exercise numbers (#596)
Stale numbering - missed #509
1 parent ce35854 commit 116c2fc

25 files changed

+5
-5
lines changed

13_factorial/README.md renamed to 17_factorial/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Exercise 13 - Factorial
1+
# Exercise 17 - Factorial
22

33
Write a recursive [factorial](https://simple.wikipedia.org/wiki/Factorial) function that takes a non-negative integer, and returns the product of all positive integers less than or equal to the input integer. An input of `0` should return `1`. The function should only accept numbers, so `'4'` should not be accepted as it is a string. All invalid inputs should return `undefined`.
44

File renamed without changes.
File renamed without changes.

14_contains/README.md renamed to 18_contains/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Exercise 14 - contains
1+
# Exercise 18 - contains
22

33
Write a function that searches for a value in a nested object. It returns true if the object contains that value.
44

File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)