2019年3月1日

python--coding

摘要: 1.给定一个整数数组 nums 和一个目标值 target,请你在该数组中找出和为目标值的那 两个 整数,并返回他们的数组下标。 class Solution: def twoSum(self, nums, target): temp = {} try: for index,i in enumera 阅读全文

posted @ 2019-03-01 16:42 海豚竹一 阅读(132) 评论(0) 推荐(0)

导航