Skip to content

Commit 25912fd

Browse files
committed
Update README.md
1 parent b8b8382 commit 25912fd

File tree

1 file changed

+28
-1
lines changed

1 file changed

+28
-1
lines changed

0x08-recursion/README.md

+28-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,28 @@
1-
# TBD
1+
# <div align="center">0x08. C - Recursion</div>
2+
3+
## About
4+
5+
- What is recursion
6+
- How to implement recursion
7+
- In what situations you should implement recursion
8+
- In what situations you shouldn’t implement recursion
9+
10+
## Files & Descriptions
11+
12+
[0-puts_recursion.c](https://github.com/Jenni-Foued/holbertonschool-low_level_programming/tree/master/0x08-recursion/0-puts_recursion.c) a function that prints a string, followed by a new line
13+
14+
[1-print_rev_recursion.c](https://github.com/Jenni-Foued/holbertonschool-low_level_programming/tree/master/0x08-recursion/1-print_rev_recursion.c) a function that prints a string in reverse
15+
16+
[2-strlen_recursion.c](https://github.com/Jenni-Foued/holbertonschool-low_level_programming/tree/master/0x08-recursion/2-strlen_recursion.c) a function that returns the length of a string
17+
18+
[3-factorial.c](https://github.com/Jenni-Foued/holbertonschool-low_level_programming/tree/master/0x08-recursion/3-factorial.c) a function that returns the factorial of a given number
19+
20+
[4-pow_recursion.c](https://github.com/Jenni-Foued/holbertonschool-low_level_programming/tree/master/0x08-recursion/4-pow_recursion.c) a function that returns the value of x raised to the power of y
21+
22+
[5-sqrt_recursion.c](https://github.com/Jenni-Foued/holbertonschool-low_level_programming/tree/master/0x08-recursion/5-sqrt_recursion.c) a function that returns the natural square root of a number
23+
24+
[6-is_prime_number.c](https://github.com/Jenni-Foued/holbertonschool-low_level_programming/tree/master/0x08-recursion/6-is_prime_number.c) a function that returns 1 if the input integer is a prime number, otherwise return 0
25+
26+
[7-is_palindrome.c](https://github.com/Jenni-Foued/holbertonschool-low_level_programming/tree/master/0x08-recursion/7-is_palindrome.c) a function that returns 1 if a string is a palindrome and 0 if not
27+
28+
[100-wildcmp.c](https://github.com/Jenni-Foued/holbertonschool-low_level_programming/tree/master/0x08-recursion/100-wildcmp.c) a function that compares two strings and returns 1 if the strings can be considered identical, otherwise return 0

0 commit comments

Comments
 (0)