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
- Stack
- bit manipulation
- SQL
- 자바
- string
- Method
- java
- database
- 코테
- 코딩테스트
- hash table
- sorting
- implement
- 파이썬
- greedy
- Matrix
- array
- dynamic programming
- simulation
- Binary Tree
- Class
- Math
- 구현
- Data Structure
- two pointers
- geometry
- Number Theory
- Counting
- Binary Search
- Tree
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 2108. Find First Palindromic String in the Array 본문
코딩테스트 풀이/JAVA
[LeetCode/Easy] 2108. Find First Palindromic String in the Array
무지맘 2023. 1. 13. 17:461. Input
1) 문자열 배열 words
2. Output
1) words의 요소들 중 처음으로 palindromic한 문자열을 반환
- 뒤에서부터 읽어도 같을 때 palindromic하다고 표현한다.
2) 그런 문자열이 없다면 빈 문자열을 반환
3. Constraint
1) 1 <= words.length <= 100
2) 1 <= words[i].length <= 100
3) words의 요소들은 영어 소문자로만 이루어져 있다.
4. Example
Input: words = ["abc","car","ada","racecar","cool"] -> Output: "ada"
Input: words = ["def","ghi"] -> Output: ""
5. Code
1) 첫 코드(2022/06/14)
String result = "";
for(int i=0 ; i<words.length ; i++){
boolean same = true;
for(int j=0 ; j<words[i].length()/2 ; j++)
if(words[i].charAt(j) != words[i].charAt(words[i].length()-1-j)){
same = false;
break;
}
if(same){
result = words[i];
break;
}
}
return result;
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[LeetCode/Easy] 2119. A Number After a Double Reversal (0) | 2023.01.13 |
---|---|
[LeetCode/Easy] 2114. Maximum Number of Words Found in Sentences (0) | 2023.01.13 |
[LeetCode/Easy] 66. Plus One (0) | 2023.01.12 |
[LeetCode/Easy] 2103. Rings and Rods (0) | 2023.01.12 |
[LeetCode/Easy] 2089. Find Target Indices After Sorting Array (0) | 2023.01.12 |