Common Computer Science References
Create a new AWS Instance for Unit 3:
use your dotfiles to recreate your PDE
―――――――――――――――
At the end of this lesson, you will be able to:
understand and use recursion
what is a function?
has parameters passed in
has a return value
is portable, hopefully!
read "Functions", Chapter 3, Computer Based Problem Solving
read "Recursion"
in 1 sentence, "recursion is a function that calls itself"
but unless you have a way out, a base case, you will end up in an infinit loop!
re-create the "Reverse the String" solution below that is in python, then test it out and prove it works
do the above in a second language