Given an integer array nums and an integer target, return the indices of the two distinct elements whose values add up to target. Return the indices as a list of two integers in any order. You may assume exactly one valid answer exists.
def two_sum(nums, target):