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 | 31 |
Tags
- Smilegate
- BaekJoon
- c++
- 코딩테스트
- 서버개발캠프
- 중반부
- 보석쇼핑
- 카카오
- 유니온파인드
- 카카오인턴
- 백준
- Algorithm
- 알고리즘
- Union-find
- 코테
- 소감
- 1편
- 스마일게이트
- BFS
- IBK기업은행 #기업은행 #디지털 #직무 #정리
- 삼성 #코테 #2020상반기 #c++
- 식단
- LIS #Algorithm #요소추적
- 투포인터
Archives
- Today
- Total
짱아의 개발 기록장
LeetCode : 9. Palindrome Number 본문
반응형
팰린드롬인지 판별하는 문제였다.
크게 2가지 방법으로 해결할 수 있었다.
1. for문으로 문자열 역전하기
시간복잡도 : O(n)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
class Solution {
public:
bool isPalindrome(int x) {
string original = to_string(x);
string reversed = "";
for(int i=original.size()-1; i>=0; i--){
reversed += original[i];
}
if(original==reversed){
return true;
}
return false;
}
};
|
cs |
2. 나머지와 몫으로 문자열 역전하기
시간복잡도 :
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
class Solution {
public:
bool isPalindrome(int x) {
if(x<0) return false;
long long reversed = 0, remainder, original = x;
while(x!=0){
remainder = x%10;
reversed = reversed*10 +remainder;
x /= 10;
}
return original==reversed;
}
};
|
cs |
반응형
'Algorithm > LeetCode' 카테고리의 다른 글
LeedCode : 17. Letter Combinations of a Phone Number (0) | 2020.12.29 |
---|---|
LeetCode : 11. Container With Most Water (0) | 2020.12.28 |
LeetCode : 7. Reverse Integer (0) | 2020.12.27 |
LeetCode : 6. ZigZag Conversion (0) | 2020.12.27 |
LeetCode : 5. Longest Palindromic Substring (0) | 2020.12.27 |
Comments