File tree 3 files changed +72
-0
lines changed
3 files changed +72
-0
lines changed Original file line number Diff line number Diff line change @@ -222,6 +222,31 @@ impl Solution {
222
222
}
223
223
```
224
224
225
+ ``` swift
226
+ class Solution {
227
+ func findMagicIndex (_ nums : [Int ]) -> Int {
228
+ let left = 0
229
+ let right = nums.count - 1
230
+ return find (nums, left, right)
231
+ }
232
+
233
+ private func find (_ nums : [Int ], _ left : Int , _ right : Int ) -> Int {
234
+ if left > right {
235
+ return -1
236
+ }
237
+ let mid = (left + right) >> 1
238
+ let leftIndex = find (nums, left, mid - 1 )
239
+ if leftIndex != -1 {
240
+ return leftIndex
241
+ }
242
+ if nums[mid] == mid {
243
+ return mid
244
+ }
245
+ return find (nums, mid + 1 , right)
246
+ }
247
+ }
248
+ ```
249
+
225
250
<!-- tabs:end -->
226
251
227
252
<!-- end -->
Original file line number Diff line number Diff line change @@ -228,6 +228,31 @@ impl Solution {
228
228
}
229
229
```
230
230
231
+ ``` swift
232
+ class Solution {
233
+ func findMagicIndex (_ nums : [Int ]) -> Int {
234
+ let left = 0
235
+ let right = nums.count - 1
236
+ return find (nums, left, right)
237
+ }
238
+
239
+ private func find (_ nums : [Int ], _ left : Int , _ right : Int ) -> Int {
240
+ if left > right {
241
+ return -1
242
+ }
243
+ let mid = (left + right) >> 1
244
+ let leftIndex = find (nums, left, mid - 1 )
245
+ if leftIndex != -1 {
246
+ return leftIndex
247
+ }
248
+ if nums[mid] == mid {
249
+ return mid
250
+ }
251
+ return find (nums, mid + 1 , right)
252
+ }
253
+ }
254
+ ```
255
+
231
256
<!-- tabs:end -->
232
257
233
258
<!-- end -->
Original file line number Diff line number Diff line change
1
+ class Solution {
2
+ func findMagicIndex( _ nums: [ Int ] ) -> Int {
3
+ let left = 0
4
+ let right = nums. count - 1
5
+ return find ( nums, left, right)
6
+ }
7
+
8
+ private func find( _ nums: [ Int ] , _ left: Int , _ right: Int ) -> Int {
9
+ if left > right {
10
+ return - 1
11
+ }
12
+ let mid = ( left + right) >> 1
13
+ let leftIndex = find ( nums, left, mid - 1 )
14
+ if leftIndex != - 1 {
15
+ return leftIndex
16
+ }
17
+ if nums [ mid] == mid {
18
+ return mid
19
+ }
20
+ return find ( nums, mid + 1 , right)
21
+ }
22
+ }
You can’t perform that action at this time.
0 commit comments