mirror of
https://gitlab.com/mfocko/LeetCode.git
synced 2024-11-09 15:59:06 +01:00
17 lines
335 B
Swift
17 lines
335 B
Swift
|
class Solution {
|
||
|
func maxProduct(_ nums: [Int]) -> Int {
|
||
|
var m = 0
|
||
|
|
||
|
for i in 0..<nums.count - 1 {
|
||
|
for j in i + 1..<nums.count {
|
||
|
let p = (nums[i] - 1) * (nums[j] - 1)
|
||
|
if p > m {
|
||
|
m = p
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return m
|
||
|
}
|
||
|
}
|