목차


[금주의 문제] sliding window를 통해 더 적게 비교하기


trailing zeros 제거하는 다양한 방법


저장을 통해 연산 횟수 줄이기

for i in range(len(nums)):
    for j in range(i, len(nums)):
        if isIncreasingSubarray.get((0, i - 1), True) and isIncreasingSubarray.get((j + 1, len(nums) - 1), True):
            if nums[j+1] > nums[i-1] if i > 0 and j < len(nums) - 1 else True:
                result += 1


2024-04-09
다음 글: 4월 3주차 알고리즘 문제 → 카테고리로 돌아가기 ↩