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
- simulation
- 파이썬
- Matrix
- SQL
- sorting
- java
- hash table
- implement
- 구현
- Class
- dynamic programming
- array
- Tree
- Binary Tree
- geometry
- Counting
- greedy
- bit manipulation
- Method
- two pointers
- Number Theory
- Data Structure
- Binary Search
- 코테
- Math
- database
- Stack
- string
- 코딩테스트
- 자바
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 1796. Second Largest Digit in a String 본문
1. Input
1) String s
2. Output
1) s에 있는 숫자들 중 2번째로 큰 수를 반환
2) 2번째로 큰 숫자가 없다면 -1을 반환
3. Constraint
1) 1 <= s.length <= 500
2) s는 영어 소문자와 숫자로만 이루어져 있다.
4. Example
Input: s = "dfa12321afd" -> Output: 2
Input: s = "abc1111" -> Output: -1
5. Code
1) 첫 코드(2023/04/21)
ArrayList<Character> list = new ArrayList<>();
for(int i=0 ; i<s.length() ; i++){
char c = s.charAt(i);
if('0'<=c && c<='9' && !list.contains(c))
list.add(c);
}
int answer;
if(list.size()<2)
answer = -1;
else{
list.sort(Comparator.naturalOrder());
answer = list.get(list.size()-2)-'0';
}
return answer;
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[LeetCode/Easy] 1854. Maximum Population Year (0) | 2023.04.21 |
---|---|
[LeetCode/Easy] 1800. Maximum Ascending Subarray Sum (0) | 2023.04.21 |
[LeetCode/Easy] 1790. Check if One String Swap Can Make Strings Equal (0) | 2023.04.21 |
[백준 온라인 저지] 24060. 알고리즘 수업 - 병합 정렬 1 (0) | 2023.04.20 |
[백준 온라인 저지] 25501. 재귀의 귀재 (0) | 2023.04.20 |