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
- 코테
- Number Theory
- SQL
- implement
- 파이썬
- dynamic programming
- Tree
- Method
- Data Structure
- geometry
- bit manipulation
- array
- java
- 코딩테스트
- Matrix
- Binary Search
- simulation
- Math
- Counting
- Class
- Stack
- two pointers
- Binary Tree
- greedy
- hash table
- 자바
- sorting
- database
- 구현
- string
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 2309. Greatest English Letter in Upper and Lower Case 본문
코딩테스트 풀이/JAVA
[LeetCode/Easy] 2309. Greatest English Letter in Upper and Lower Case
무지맘 2023. 6. 26. 11:521. Input
1) String s
2. Output
1) s에 있는 알파벳 중 대소문자가 모두 있는 알파벳을 대문자로 반환
- 여러 개라면 그 중 가장 큰(순서상 뒤에 나오는) 알파벳을 반환
2) 조건을 만족하는 알파벳이 없다면 빈 문자열을 반환
3. Constraint
1) 1 <= s.length <= 1000
2) s는 영어 대소문자로 이루어져 있다.
4. Example
Input: s = "arRAzFif" -> Output: "R"
설명: 대소문자가 모두 나타나는 알파벳은 A, R이다. 이 중 더 큰 것은 R이므로 이를 반환한다.
5. Code
1) 첫 코드(2023/06/26)
class Solution {
public String greatestLetter(String s) {
HashSet<Character> upper = new HashSet<>();
HashSet<Character> lower = new HashSet<>();
for(int i=0 ; i<s.length() ; i++){
char c = s.charAt(i);
if(Character.isLowerCase(c)) lower.add(c);
else upper.add(c);
}
List<Character> list = new ArrayList<>();
for(char c : upper)
if(lower.contains(Character.toLowerCase(c)))
list.add(c);
list.sort(Comparator.reverseOrder());
if(list.size()==0)
return "";
else
return String.valueOf(list.get(0));
}
}
- 37%, 94%
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[LeetCode/Easy] 2389. Longest Subsequence With Limited Sum (0) | 2023.06.26 |
---|---|
[LeetCode/Easy] 2331. Evaluate Boolean Binary Tree (0) | 2023.06.26 |
[LeetCode/Easy] 2409. Count Days Spent Together (0) | 2023.06.23 |
[LeetCode/Easy] 2404. Most Frequent Even Element (0) | 2023.06.22 |
[백준 온라인 저지] 2558. A+B - 2 (0) | 2023.06.22 |