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
- 도커
- String
- DP
- 하둡
- 아파치 스파크
- 분산처리
- heapq
- 그래프
- 분산
- 티스토리챌린지
- 코딩테스트
- BFS
- 카프카
- 리트코드
- 이진탐색
- 문자열
- docker
- 아파치 카프카
- 아파치 하둡
- apache kafka
- leetcode
- Apache Hadoop
- Python
- programmers
- 우선순위큐
- 프로그래머스
- 오블완
- 알고리즘
- 파이썬
- Apache Spark
Archives
- Today
- Total
목록2025/02/03 (1)
래원
[LeetCode] 3105. Longest Strictly Increasing or Strictly Decreasing Subarray (Python)
난이도: Easy문제 설명You are given an array of integers nums. Return the length of the longest subarray of nums which is either strictly increasing or strictly decreasing. 문제 예제Example 1:Input: nums = [1,4,3,3,2]Output: 2Explanation:The strictly increasing subarrays of nums are [1], [2], [3], [3], [4], and [1,4].The strictly decreasing subarrays of nums are [1], [2], [3], [3], [4], [3,2], and [4,3].Hen..
알고리즘/LeetCode
2025. 2. 3. 12:40