일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- 715. Range Module
- Decorator
- 315. Count of Smaller Numbers After Self
- LeetCode
- Python Implementation
- 운영체제
- Substring with Concatenation of All Words
- attribute
- 시바견
- 컴퓨터의 구조
- 109. Convert Sorted List to Binary Search Tree
- 43. Multiply Strings
- kaggle
- Python
- 30. Substring with Concatenation of All Words
- DWG
- 프로그래머스
- 밴픽
- 파이썬
- iterator
- Protocol
- Python Code
- Regular Expression
- concurrency
- data science
- Convert Sorted List to Binary Search Tree
- Class
- t1
- Generator
- shiba
Archives
- Today
- Total
Scribbling
[Java 101] 125. Valid Palindrome with StringBuilder 본문
Computer Science/Java
[Java 101] 125. Valid Palindrome with StringBuilder
focalpoint 2023. 2. 21. 00:14class Solution {
public boolean isPalindrome(String s) {
StringBuilder sb = new StringBuilder();
s.chars().filter(c -> Character.isLetterOrDigit(c))
.mapToObj(c -> Character.toLowerCase((char) c))
.forEach(sb::append);
return sb.toString().equals(sb.reverse().toString());
}
}
'Computer Science > Java' 카테고리의 다른 글
[Java 101] 20. Valid Parentheses: Stack (0) | 2023.02.23 |
---|---|
[Java 101] 76. Minimum Window Substring: Set, HashMap (0) | 2023.02.22 |
[Java 101] 347. Top K Frequent Elements with HashMap as a counter, PriorityQueue, (0) | 2023.02.14 |
[Java 101] 49. Group Anagrams with HashMap, StringBuilder (0) | 2023.02.14 |
[Java 101] 1. Two Sum with HashMap as a counter (0) | 2023.02.14 |