1
0
Fork 0
mirror of https://gitlab.com/mfocko/LeetCode.git synced 2024-11-09 15:59:06 +01:00

problems(swift): add “1464. Maximum Product of Two Elements in an Array”

Signed-off-by: Matej Focko <mfocko@redhat.com>
This commit is contained in:
Matej Focko 2023-12-12 14:23:42 +01:00
parent 0432d97982
commit 608d678b88
Signed by: mfocko
GPG key ID: 7C47D46246790496

View file

@ -0,0 +1,16 @@
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
}
}