mirror of
https://gitlab.com/mfocko/LeetCode.git
synced 2024-11-09 15:59:06 +01:00
23 lines
437 B
Swift
23 lines
437 B
Swift
|
class Solution {
|
||
|
func findSpecialInteger(_ arr: [Int]) -> Int {
|
||
|
let threshold = arr.count / 4
|
||
|
|
||
|
var last = -1
|
||
|
var counter = 0
|
||
|
for x in arr {
|
||
|
if last != x {
|
||
|
counter = 1
|
||
|
last = x
|
||
|
} else {
|
||
|
counter += 1
|
||
|
}
|
||
|
|
||
|
if counter > threshold {
|
||
|
return last
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return -1
|
||
|
}
|
||
|
}
|