forked from MIT-Emerging-Talent/ET6-practice-code-review
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #78 from MIT-Emerging-Talent/Crafting-solution's-r…
…eadme.md Update README.md
- Loading branch information
Showing
1 changed file
with
149 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,150 @@ | ||
# Solutions | ||
|
||
## This file contains a brief on the challenges completed by Group 18 Team | ||
|
||
### factorial | ||
|
||
- **description:** A module for Computing the factorial of | ||
a non-negative integer n. | ||
|
||
- **written by:** Saad (sashour82) | ||
|
||
- **reviewed by:** Luyandochitindi (Luyando-Chitindi) | ||
|
||
### is_palinrome | ||
|
||
- **description:** A module for checking if a given string is | ||
a palindrome (reads the same backward as forward). | ||
|
||
- **written by:** Saad (sashour82) | ||
|
||
- **reviewed by:** Falaq (FalaqMajeed) | ||
|
||
### is_even | ||
|
||
- **description:** A module that contains a function that checks if a number is even. | ||
|
||
- **written by:** Luyandochitindi (Luyando-Chitindi) | ||
|
||
- **reviewed by:** Mohammed (Moealfadil) | ||
|
||
### is_positive | ||
|
||
- **description:** A module that contains a function that checks if a number is positive. | ||
|
||
- **written by:** Luyandochitindi (Luyando-Chitindi) | ||
|
||
- **reviewed by:** Muna (Muna-S) | ||
|
||
### mean | ||
|
||
- **description:** Calculates the mean of numbers in a list | ||
|
||
- **written by:** Mohammed (Moealfadil) | ||
|
||
- **reviewed by:** Falaq (FalaqMajeed) | ||
|
||
### is_prime | ||
|
||
- **description:** Checks if a number is prime or not | ||
|
||
- **written by:** Mohammed (Moealfadil) | ||
|
||
- **reviewed by:** Luyandochitindi (Luyando-Chitindi) | ||
|
||
### cumulative_sum | ||
|
||
- **description:** Calculates the cumulative sum of a list by iterating | ||
through its elements and maintaining a running total | ||
|
||
- **written by:** Falaq (FalaqMajeed) | ||
|
||
- **reviewed by:** Mohammed (Moealfadil) | ||
|
||
### list_to_string | ||
|
||
- **description:** Converts a list into a single string | ||
|
||
- **written by:** Falaq (FalaqMajeed) | ||
|
||
- **reviewed by:** Raghad (raghad598) | ||
|
||
### max_in | ||
|
||
- **description:** Find the maximum number in a list | ||
|
||
- **written by:** TagwaHashim (TagwaHashim) | ||
|
||
- **reviewed by:** Raghad (raghad598) | ||
|
||
### sum_of | ||
|
||
- **description:** Calculate the summation of two numbers | ||
|
||
- **written by:** TagwaHashim (TagwaHashim) | ||
|
||
- **reviewed by:** Muna (Muna-S) | ||
|
||
### binary_to_decimal | ||
|
||
- **description:** Give the decimal number for a binary | ||
|
||
- **written by:** Muna (Muna-S) | ||
|
||
- **reviewed by:** TagwaHashim (TagwaHashim), Falaq (FalaqMajeed) | ||
|
||
### leap_year | ||
|
||
- **description:** Checks whether a year is a leap year | ||
|
||
- **written by:** Muna (Muna-S) | ||
|
||
- **reviewed by:** TagwaHashim (TagwaHashim) | ||
|
||
### remove_duplicates | ||
|
||
- **description:** Take a list and return it without any repeated values | ||
|
||
- **written by:** Heba (HebaShaheen) | ||
|
||
- **reviewed by:** Saad (sashour82) | ||
|
||
### decimal_to_binary | ||
|
||
- **description:** Give the binary number for a decimal | ||
|
||
- **written by:** Heba (HebaShaheen) | ||
|
||
- **reviewed by:** Saad (sashour82) | ||
|
||
### count_words | ||
|
||
- **description:** Counts the number of words in a string | ||
|
||
- **written by:** Raghad (raghad598) | ||
|
||
- **reviewed by:** Saad (sashour82) | ||
|
||
### area_of_circle | ||
|
||
- **description:** Calculates the area of a circle given its radius | ||
|
||
- **written by:** Raghad (raghad598) | ||
|
||
- **reviewed by:** Mohammed (Moealfadil) | ||
|
||
### hex_to_binary | ||
|
||
- **description:** Converts a hexadecimal string to its binary equivalent | ||
|
||
- **written by:** Marc (MarcDarazi99) | ||
|
||
- **reviewed by:** Mohammed (Moealfadil) | ||
|
||
### binary_to_hex | ||
|
||
- **description:** Converts a binary string to its hexadecimal equivalent | ||
|
||
- **written by:** Marc (MarcDarazi99) | ||
|
||
- **reviewed by:** Mohammed (Moealfadil), Heba (HebaShaheen), Falaq (FalaqMajeed) |