Just added: Embedded C From Zero
Python
# Return the two indices whose values add up to target (in any order),
# or None if no such pair exists.
def two_sum(nums, target):
    pass