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 |
Tags
- programmers
- 우선순위큐
- apache kafka
- BFS
- 분산처리
- 아파치 카프카
- 아파치 하둡
- heapq
- Apache Spark
- 리트코드
- 카프카
- 문자열
- 그래프
- 이진탐색
- Apache Hadoop
- 분산
- 도커
- 오블완
- 알고리즘
- 아파치 스파크
- leetcode
- docker
- DP
- 티스토리챌린지
- String
- 하둡
- 파이썬
- 프로그래머스
- Python
- 코딩테스트
Archives
- Today
- Total
목록2025/02/04 (1)
래원
[LeetCode] 1800. Maximum Ascending Subarray Sum (Python)
난이도: Easy문제 설명Given an array of positive integers nums, return the maximum possible sum of an ascending subarray in nums. A subarray is defined as a contiguous sequence of numbers in an array. A subarray [numsl, numsl+1, ..., numsr-1, numsr] is ascending if for all i where l , numsi i+1. Note that a subarray of size 1 is ascending. 문제 예제Example 1:Input: nums = [10,20,30,5,10,50]Output: 65Explan..
카테고리 없음
2025. 2. 4. 10:51