Initial commit

This commit is contained in:
Chris
2022-02-27 18:51:59 -05:00
commit 370415e29b
9 changed files with 523 additions and 0 deletions

17
types_notes.md Normal file
View File

@@ -0,0 +1,17 @@
## Types notes
For each function in the table below, describe what type the function would take as an input,
and what type the function would return as output.
| Function | Input type(s) | Output type |
|------------------------------------------------------------------|---------------|-------------|
| Square root of a number | `float` | `float` |
| Multiplication of two integers | | |
| Average of a list of numbers | | |
| A function that gives all the factors of a number | | |
| A function to check if a word is a curse word | | |
| A function that assigns a friendliness score to a sentence | | |
| A function that takes a website URL and returns the page content | | |
| A function that counts the number of sentences in a paragraph | | |
| `>` | | |
| `not` | | |