Python lambda function
Ex: x = lambda a: a + 10
Print(x(5))
Result: 15
Python assert
If condition returns true, nothing happens. Otherwise assertion error is raised
Array
Indexed list of data elements
Linked list
Data scattered through different cells. List contains reference to next node
Bubble sort
Sorts adjacent data one at a time
Quicksort
Uses pivots, pointers moving in opposite directions
Quickselect
Quicksort, but keeps dividing the partition into 2