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 | 29 | 30 |
Tags
- implement
- Tree
- Method
- hash table
- geometry
- Binary Tree
- Stack
- 파이썬
- database
- string
- Matrix
- Number Theory
- two pointers
- 코테
- Class
- Math
- 자바
- bit manipulation
- greedy
- 코딩테스트
- dynamic programming
- Binary Search
- simulation
- sorting
- Counting
- java
- array
- 구현
- Data Structure
- SQL
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 2042. Check if Numbers Are Ascending in a Sentence 본문
코딩테스트 풀이/JAVA
[LeetCode/Easy] 2042. Check if Numbers Are Ascending in a Sentence
무지맘 2023. 1. 12. 08:541. Input
1) 문자열 s
- s의 토큰들은 공백 문자 1개로 나누어져 있다.
2. Output
1) s에 있는 수들이 오름차순으로 들어있다면 true, 아니면 false를 반환
3. Constraint
1) 3 <= s.length <= 200
2) s는 영어 소문자, 공백 문자, 숫자로 이루어져 있다.
3) s의 토큰의 수는 [2, 100]개이다.
4) s에 있는 수들은 [1, 99]의 자연수이다.
4. Example
Input: s = "hello world 5 x 5" -> Output: false
Input: s = "1 box has 3 blue 4 red 6 green and 12 yellow marbles" -> Output: true
설명:
- 5, 5는 오름차순이 아니다.
- 1, 3, 4, 6, 12는 오름차순이다.
5. Code
1) 첫 코드(2022/06/23)
String[] narr = s.split("[a-z\\s]+");
for(int i=0 ; i<narr.length-1 ; i++){
if(narr[i] == "") continue;
if(Integer.parseInt(narr[i]) >= Integer.parseInt(narr[i+1]))
return false;
}
return true;
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[LeetCode/Easy] 2068. Check Whether Two Strings are Almost Equivalent (0) | 2023.01.12 |
---|---|
[LeetCode/Easy] 2057. Smallest Index With Equal Value (0) | 2023.01.12 |
[프로그래머스/Lv.1] 푸드 파이트 대회 (0) | 2023.01.11 |
[LeetCode/Easy] 100. Same Tree (0) | 2023.01.11 |
[LeetCode/Easy] 2037. Minimum Number of Moves to Seat Everyone (0) | 2023.01.11 |