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
- Tree
- Method
- 구현
- 코딩테스트
- Stack
- sorting
- 자바
- Class
- database
- Data Structure
- array
- Binary Search
- Math
- 코테
- dynamic programming
- geometry
- Matrix
- string
- hash table
- SQL
- Counting
- bit manipulation
- Number Theory
- 파이썬
- java
- Binary Tree
- two pointers
- implement
- simulation
- greedy
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 9. Palindrome Number 본문
1. Input
1) int 변수 x
2. Output
1) boolean 값
2) 10진수 x를 거꾸로 써도 x라면 true, 아니면 false
3. Constraint
1) -2^31 <= x <= 2^31 - 1
4. Example
1) Input: x = 121
Output: true
설명: x를 거꾸로 하면 121
2) Input: x = -121
Output: false
설명: x를 거꾸로 하면 121-
5. Code
1) 첫 코드(2022/05/31)
if(x<0)
return false;
else if(x==0)
return true;
else{
String s1=""+x, s2="";
int num = x;
while(num>=1){
s2 += num%10 + "";
num = num/10;
}
if(s1.equals(s2))
return true;
else
return false;
}
- 숫자를 10으로 나눠가면서 나머지부터 String 변수 s2에 추가시켜 숫자를 뒤집는 방법 사용
- overflow를 걱정하지 않아도 됨
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[LeetCode/Medium] 1476. Subrectangle Queries (0) | 2022.08.16 |
---|---|
[LeetCode/Easy] 28. Implement strStr() (0) | 2022.08.12 |
[LeetCode/Easy] 26. Remove Duplicates from Sorted Array (0) | 2022.08.10 |
[LeetCode/Easy] 13. Roman to Integer (0) | 2022.08.09 |
[LeetCode/Easy] 1. Two Sum (0) | 2022.08.08 |