Code Challenge
Two Sum
00:00
Medium
Write a function called `two_sum` that takes a list of numbers and a target sum. Return the indices of the two numbers that add up to the target. Assume exactly one solution exists.
solution.py