일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- TypeScript
- BOJ
- 보안
- bash
- AI
- JavaScript
- 앙상블
- nginx
- type
- dotenv
- webpack
- security
- npm
- scss
- vuetify
- docker
- VUE
- Python
- leetcode
- loop
- Clone
- C++
- generic
- property
- machine learning
- git
- condition
- var
- C#
- vue.js
Archives
- Today
- Total
ice rabbit programming
[LeetCode] 9. Palindrome Number 본문
https://leetcode.com/problems/palindrome-number/
팰린드롬 숫자, 앞뒤가 같은 숫자를 판별하는 문제이다. BOJ에서도 비슷한 문제를 풀었었다.
문제에서 음수는 팰린드롬으로 취급받지 않으므로 걸러낸 후에, string으로 변환하여 대칭을 비교하였다.
이번엔 C++이 아닌 C#으로 풀었다.
public class Solution {
public bool IsPalindrome(int x) {
if(x<0)
return false;
else if(x==0)
return true;
else {
var source = x.ToString();
if(source.Length==1)
return true;
for(int i=0;i<source.Length/2;i++) {
if(source[i]!=source[source.Length-1-i])
return false;
}
return true;
}
}
}
단순하게 풀었다. 하지만 시간과 공간이 상당히 하위권이었다.
'PS > LeetCode' 카테고리의 다른 글
[LeetCode] Remove Element (0) | 2020.04.15 |
---|---|
[LeetCode] Remove Duplicates From Sorted Array (0) | 2020.04.15 |
[LeetCode] 7. Reverse Integer (0) | 2020.04.12 |
[LeetCode] 21. Merge Two Sorted Lists (0) | 2020.04.12 |
[LeetCode] 13. Roman to Integer (0) | 2020.04.11 |