在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ Given an array Example 1: Input: [-10,-5,0,3,7]
Output: 3
Explanation:
For the given array,
Example 2: Input: [0,2,5,8,17]
Output: 0
Explanation:
Example 3: Input: [-10,-5,3,4,7,9]
Output: -1
Explanation:
There is no such
Note:
给定已经按升序排列、由不同整数组成的数组 示例 1: 输入:[-10,-5,0,3,7]
输出:3
解释:
对于给定的数组,
示例 2: 输入:[0,2,5,8,17]
输出:0
示例:
示例 3: 输入:[-10,-5,3,4,7,9]
输出:-1
解释:
不存在这样的 i 满足
提示:
Runtime: 76 ms
Memory Usage: 21.2 MB
1 class Solution { 2 func fixedPoint(_ A: [Int]) -> Int { 3 for i in 0..<A.count 4 { 5 if A[i] == i 6 { 7 return i 8 } 9 } 10 return -1 11 } 12 }
|
请发表评论