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
- easy
- GKE
- 알고리즘
- k8s
- Backjoon
- Singleton Pattern
- KAKAO
- go
- Codility
- GCP
- golang
- Top-down
- Python
- BubbleSort
- github
- 파이썬
- 피보나치
- mobaXTerm
- 백준
- LeetCode
- Observer Pattern
- kubernetes
- 그리디
- cpu scheduling
- Dynamic Programming
- java
- Kotlin
- docker
- Programmers
Archives
- Today
- Total
To Be Developer
[LeetCode] 459. Repeated SubString Pattern (JAVA) 본문
https://leetcode.com/problems/repeated-substring-pattern/
[JAVA 풀이]
class Solution {
public boolean repeatedSubstringPattern(String s) {
// 매개변수 s의 길이
int sLen = s.length();
// 1차 반복 : n개의 문자 비교
for (int i = 0; i < (sLen / 2); i++) {
// sLen을 i로 나눴을 때 몫이 0 이 아니면 반복되지 않음
if (sLen % (i + 1) != 0) {
// continue해서 반복을 건너뜀
continue;
}
// 0~i 까지의 문자열과 i+1 씩 증가하는 j~j+i 의 문자열을 비교
int cnt = 1;
for (int j = i + 1; j < sLen - i; j += (i + 1)) {
if (!s.substring(0, i + 1).equals(s.substring(j, j + i + 1))) {
// 같지 않으면 반복문을 빠져나감
break;
} else {
// 같으면 cnt 변수를 증가시킴
cnt++;
}
}
// cnt 가 전체 길이를 i+1로 나눈 것과 같다면
// true를 리턴해준다.
if (cnt == sLen / (i + 1)) {
return true;
}
}
// 반복문을 빠져나오게 되면 반복되지않은 문자이므로
// return false를 해준다.
return false;
}
public static void main(String[] args) {
String input = "abcabc";
Solution s = new Solution();
System.out.println(s.repeatedSubstringPattern(input));
}
}
[후기]
오랜만에 자바로 코딩하니 새로운 느낌이었다.
'알고리즘 > LeetCode' 카테고리의 다른 글
[LeetCode] 643. Maximum Average SubArray I (GoLang, Python) (0) | 2019.04.02 |
---|---|
[LeetCode] 724. Find Pivot Index (GoLang, Python) (0) | 2019.04.01 |
[LeetCode] 26. Remove Duplicates from Sorted Array [GoLang, Python] (0) | 2019.03.31 |
[LeetCode] 66. Plus One (GoLang, Python) (0) | 2019.03.31 |
[LeetCode] 342. Power of Four (GoLang, Python) (0) | 2019.03.30 |