| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
Tags
- Python
- 715. Range Module
- shiba
- 시바견
- iterator
- concurrency
- data science
- 운영체제
- 컴퓨터의 구조
- 프로그래머스
- kaggle
- LeetCode
- 315. Count of Smaller Numbers After Self
- 30. Substring with Concatenation of All Words
- Protocol
- 109. Convert Sorted List to Binary Search Tree
- 밴픽
- 43. Multiply Strings
- Decorator
- DWG
- Regular Expression
- Convert Sorted List to Binary Search Tree
- attribute
- Substring with Concatenation of All Words
- Python Code
- t1
- Generator
- Python Implementation
- 파이썬
- Class
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 |