reading-notes

Read 01 Prep Work

Pain vs. Suffering

Source: https://codefellows.github.io/code-401-python-guide/curriculum/class-01/notes/pain_suffering

A beginner’s guide to Big O notation

Source: https://rob-bell.net/2009/06/a-beginners-guide-to-big-o-notation/

This is common with algorithms that involve nested iterations over the data set. Deeper nested iterations will result in O(N3), O(N4) etc.

The growth curve of an O(2N) function is exponential - starting off very shallow, then rising meteorically.