| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
Tags
- Problem Solving
- 화상영어
- 10분
- 개발자
- realclass
- leetcode
- 괜찮음
- 스탭퍼
- Daily Challenge
- 사이드
- 30분
- 만화도
- 미드시청
- 파비최
- 매일
- 영어원서읽기
- 잡생각
- 리얼 클래스
- 프로젝트
- 운동
- 3줄정리
- FIT XR
- 월간
- 뭐든
- 쓰릴오브파이트
- English
- 링피트
- Writing
- 영어공부
- 읽기
Archives
- Today
- Total
파비의 매일매일 공부기록
Today's Challenge 본문
https://leetcode.com/problems/minimum-operations-to-reduce-x-to-zero/
Minimum Operations to Reduce X to Zero - LeetCode
Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview.
leetcode.com
오늘은 시간이 없어서 일단 소스만 제출하고 패스.
조금 있다가 읽어봐야지
class Solution:
def minOperations(self, nums: List[int], x: int) -> int:
# find the longest subarray that sum to 'goal'
s = sum(nums)
n = len(nums)
goal = s - x
max_length = -1
left = 0
current_sum = 0
for right, num in enumerate(nums):
current_sum += num
# if larger, move `left` to right
while current_sum > goal and left <= right:
current_sum -= nums[left]
left += 1
# check if equal
if current_sum == goal:
max_length = max(max_length, right-left+1)
return n - max_length if max_length != -1 else -1반응형
'Problem Solving > LeetCode' 카테고리의 다른 글
| Today's Challenge (0) | 2022.06.13 |
|---|---|
| Today's Challenge (0) | 2022.06.12 |
| Today's Challenge (0) | 2022.06.10 |
| Today's Challenge (0) | 2022.06.09 |
| Today's Challenge (0) | 2022.06.08 |
Comments