Given an array of integers, return indices of the two numbers such that they add up to a specific target.
You may assume that each input would have exactly one solution, and you may not use the same element twice.
(译:给定一个整数数组,返回两个数字的索引,使它们相加得到一个特定目标值。
您可以假设每个输入都只有一个解决方案,而您可能不会使用相同的元素两次。)