You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- 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