Just added: Algorithms you can run and practice
Python
# Write mean(nums): the arithmetic mean (average) of the numbers in nums.
def mean(nums):
    pass

# Write variance(nums): the population variance - the average of
# (x - mean(nums)) ** 2 across every x in nums.
def variance(nums):
    pass