티스토리 뷰
Problem
Given an array of integers arr, return true if and only if it is a valid mountain array.
Recall that arr is a mountain array if and only if:
arr.length >= 3
There exists some i with 0 < i < arr.length - 1 such that:
arr[0] < arr[1] < ... < arr[i - 1] < arr[i]
arr[i] > arr[i + 1] > ... > arr[arr.length - 1]
Example 1:
Input: arr = [2,1]
Output: false
Example 2:
Input: arr = [3,5,5]
Output: false
Example 3:
Input: arr = [0,3,2,1]
Output: true
Constraints:
- 1 <= arr.length <= 10^4
- 0 <= arr[i] <= 10^4
Solution
계속 증가하다가 특정 시점부터 계속 감소하는 배열(문제의 그림 참조)을 mountain array라고 하는데 주어진 배열이 mountain array인지 여부를 반환하는 문제입니다.
public class Solution {
public boolean validMountainArray(int[] arr) {
int left = 0;
int right = arr.length - 1;
int length = arr.length - 1;
while (left + 1 < length && arr[left] < arr[left + 1]) { // (1)
left++;
}
while (right > 0 && arr[right] < arr[right - 1]) { // (2)
right--;
}
return (left > 0 && left == right && right < length); // (3)
}
}
- 왼쪽부터 증가하는동안 포인터를 이동시킵니다.
- 오른쪽부터 감소하는동안 포인터를 이동시킵니다.
- 두 포인터가 범위 안에 있고 동일한 곳을 가리키면 mountain array 입니다.
Test
package io.lcalmsky.leetcode.valid_mountain_array;
import static org.junit.jupiter.api.Assertions.assertAll;
import static org.junit.jupiter.api.Assertions.assertEquals;
import org.junit.jupiter.api.Test;
class SolutionTest {
@Test
void testAll() {
assertAll(
() -> test(new int[]{2, 1}, false),
() -> test(new int[]{3, 5, 5}, false),
() -> test(new int[]{0, 3, 2, 1}, true)
);
}
private void test(int[] given, boolean expected) {
// when
Solution solution = new Solution();
boolean actual = solution.validMountainArray(given);
// then
assertEquals(expected, actual);
}
}
'Algorithm > LeetCode' 카테고리의 다른 글
1305. All Elements in Two Binary Search Trees (0) | 2022.01.31 |
---|---|
1291. Sequential Digits (0) | 2022.01.30 |
520. Detect Capital (0) | 2022.01.28 |
1510. Stone Game IV (0) | 2022.01.27 |
134. Gas Station (0) | 2022.01.25 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- @ManyToOne
- 헥사고날 아키텍처
- intellij
- proto3
- JSON
- 알고리즘
- 스프링 부트 튜토리얼
- 클린 아키텍처
- Spring Boot JPA
- Spring Data JPA
- Spring Boot Tutorial
- Jackson
- 스프링 데이터 jpa
- 스프링 부트 애플리케이션
- JPA
- 함께 자라기
- Java
- Linux
- 스프링부트
- spring boot jwt
- spring boot app
- 함께 자라기 후기
- 스프링 부트 회원 가입
- QueryDSL
- gRPC
- r
- leetcode
- spring boot application
- 스프링 부트
- Spring Boot
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함