Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 코틀린기초
- 릿코드
- 릿코드풀이
- 파이썬알고리즘
- 파이썬 알고리즘
- python sorted
- 파이썬릿코드풀기
- python priority queue
- python Leetcode
- 상가수익률계산기
- python 릿코드
- leetcode 풀기
- 파이썬 알고리즘 풀기
- 파이썬알고리즘풀기
- 파이썬릿코드
- 파이썬 릿코드
- 알고리즘풀기
- 릿코드 풀기
- 파이썬 프로그래머스
- 알고리즘풀이
- 릿코드풀기
- leetcode풀이
- python zip_longest
- leetcode풀기
- python xor
- 잇츠디모
- 릿코드 파이썬
- LeetCode
- binary search
- python 알고리즘
Archives
- Today
- Total
소프트웨어에 대한 모든 것
LeetCode 풀기 - 1464. Maximum Product of Two Elements in an Array 본문
알고리즘/LeetCode
LeetCode 풀기 - 1464. Maximum Product of Two Elements in an Array
앤테바 2021. 11. 6. 10:10반응형
1464. Maximum Product of Two Elements in an Array
https://leetcode.com/problems/maximum-product-of-two-elements-in-an-array/
문제)
솔루션1)
- O(nlogn)
class Solution:
def maxProduct(self, nums: List[int]) -> int:
nums.sort()
return (nums[-1] - 1) * (nums[-2] - 1)
솔루션2)
- O(n)
class Solution:
def maxProduct(self, nums: List[int]) -> int:
a, b = 0, 0
for n in nums:
if b < n:
a, b = b, n
elif a < n:
a = n
return (a-1) * (b-1)
반응형
'알고리즘 > LeetCode' 카테고리의 다른 글
LeetCode 풀기 - 1979. Find Greatest Common Divisor of Array (0) | 2021.11.06 |
---|---|
LeetCode 풀기 - 709. To Lower Case (0) | 2021.11.06 |
LeetCode 풀기 - 1941. Check if All Characters Have Equal Number of Occurrences (0) | 2021.11.06 |
LeetCode 풀기 - 1844. Replace All Digits with Characters (0) | 2021.11.05 |
LeetCode 풀기 - 1816. Truncate Sentence (0) | 2021.11.05 |
Comments