leetcode.com/problems/palindromic-substrings/
문제 풀이 방식
브루트 포스 - 모든 생성될 수 있는 문자열에 대한 펠린드롬을 검사
주의할 점
toCharArray() 매서드를 기억하자.
소스코드
'Leetcode 100문제 도전' 카테고리의 다른 글
[Leetcode 26/100] Number of Islands - Medium (0) | 2021.01.24 |
---|---|
[Leetcode 25/100] Product of Array Except Self - Medium (0) | 2021.01.21 |
[Leetcode 23/100] Palindrome Linked List - Easy (0) | 2021.01.21 |
[Leetcode 22/100] Top K Frequent Elements - Medium (0) | 2021.01.21 |
[Leetcode 21/100] Kth Smallest Element in a BST - Medium (1) | 2021.01.20 |