Skip to content

Commit a18fa80

Browse files
committed
update Readme file
1 parent 50d3bde commit a18fa80

File tree

1 file changed

+11
-9
lines changed

1 file changed

+11
-9
lines changed

0x08-recursion/README.md

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,19 @@
1-
FILE 0-puts_recursion.c is a function that prints a string.
1+
# Welcome to 0x08-recursion
22

3-
FILE 1-print_rev_recursion.c is a function that prints a string in reverse.
3+
`FILE 0-puts_recursion.c` is a function that prints a string.
44

5-
FILE 2-strlen_recursion.c is a function that returns the length of a string.
5+
`FILE 1-print_rev_recursion.c` is a function that prints a string in reverse.
66

7-
FILE 3-factorial.c is a function that returns the factorial of a given number.
7+
`FILE 2-strlen_recursion.c` is a function that returns the length of a string.
88

9-
FILE 4-pow_recursion.c is function that returns the value of x raised to the power of y.
9+
`FILE 3-factorial.c` is a function that returns the factorial of a given number.
1010

11-
FILE 5-sqrt_recursion.c is a function that returns the natural square root of a number.
11+
`FILE 4-pow_recursion.c` is function that returns the value of x raised to the power of y.
1212

13-
FILE 6-is_prime_number.c is a function that returns 1 if the input integer is a prime number.
13+
`FILE 5-sqrt_recursion.c` is a function that returns the natural square root of a number.
1414

15-
FILE 100-is_palindrome.c is a function that returns 1 if a string is a palindrome and 0 if not.
15+
`FILE 6-is_prime_number.c` is a function that returns 1 if the input integer is a prime number.
1616

17-
FILE 101-wildcmp.c is a function that compares two strings and returns 1 if the strings can be considered identical, otherwise return 0.
17+
`FILE 100-is_palindrome.c` is a function that returns 1 if a string is a palindrome and 0 if not.
18+
19+
`FILE 101-wildcmp.c` is a function that compares two strings and returns 1 if the strings can be considered identical, otherwise return 0.

0 commit comments

Comments
 (0)