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
- greedy
- 코딩테스트
- two pointers
- string
- array
- Data Structure
- Number Theory
- dynamic programming
- bit manipulation
- Stack
- Matrix
- Math
- Method
- 구현
- Binary Search
- 자바
- hash table
- SQL
- java
- implement
- Tree
- sorting
- Binary Tree
- 코테
- Class
- database
- 파이썬
- Counting
- simulation
- geometry
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 459. Repeated Substring Pattern 본문
1. Input
1) String s
2. Output
1) s의 한 부분 문자열을 반복해서 s를 만들 수 있다면 true, 만들 수 없다면 false를 반환
3. Constraint
1) 1 <= s.length <= 10^4
2) s는 영어 소문자로만 이루어져 있다.
3) 부분 문자열에서 자기 자신은 제외한다.
4. Example
Input: s = "abab" -> Output: true
Input: s = "aba" -> Output: false
5. Code
1) 첫 코드(2023/05/19)
class Solution {
public boolean repeatedSubstringPattern(String s) {
boolean find = false;
for(int i=1 ; i<s.length() && !find ; i++){
if(s.length()%i==0)
find = s.substring(0,i).repeat(s.length()/i).equals(s);
}
return find;
}
}
- 속도는 빠른데 메모리를 꽤 잡아 먹는 편
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[LeetCode/Easy] 485. Max Consecutive Ones (0) | 2023.05.19 |
---|---|
[LeetCode/Easy] 482. License Key Formatting (0) | 2023.05.19 |
[LeetCode/Easy] 415. Add Strings (0) | 2023.05.19 |
[LeetCode/Easy] 392. Is Subsequence (0) | 2023.05.18 |
[LeetCode/Easy] 303. Range Sum Query - Immutable (0) | 2023.05.18 |