美文网首页
Swift---LeetCode,第179题

Swift---LeetCode,第179题

作者: BabyNeedCare | 来源:发表于2021-11-23 17:45 被阅读0次
    1. 最大数
      /*
      给定一个整数数组 nums 和一个整数目标值 target,请你在该数组中找出 和为目标值 target 的那 两个 整数,并返回它们的数组下标。

      你可以假设每种输入只会对应一个答案。但是,数组中同一个元素在答案里不能重复出现。

      你可以按任意顺序返回答案。
      **/

    ```
    func matchAction(nums: [Int], target: Int) -> [Int]  {
        
        var firstIndex = -1
        
        var secondIndex = -1
        
        for (index, value) in nums.enumerated() {
            
            if index + 1 < nums.count {
                
                for ido in index + 1..<nums.count {
                    
                    if value + nums[ido] == target {
                        
                        firstIndex = index
                        
                        secondIndex = ido
                        
                        break
                    }
                }
            }
        }
        
        return [firstIndex,secondIndex]
    }

    相关文章

      网友评论

          本文标题:Swift---LeetCode,第179题

          本文链接:https://www.haomeiwen.com/subject/fsnwtrtx.html