We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
class Solution { public: bool isPalindrome(int x) { if (x < 0) return false; int origin = x; long revers = 0; while (x > 0){ revers = revers * 10 + (x % 10); x = x / 10; } return (revers == origin); } };
두 가지 방법으로 정수 그대로 뒤집고 비교하는 방법과 문자열로 변환 후 비교하는 방법이 있음, 펠린드롭 수 특징 상 주어진 정수에서 음수인 경우만 제외하면 추가적인 조치가 필요 없음 (문자열로 주어질 때는 필요) 따라서 정수가 더 효율적임
앞서 풀이한 주어진 숫자 뒤집기 연산을 통해 비교함
return (revers == origin);
결과값 자체가 참 거짓으로 나오기에 반환 연산 생각하기
뒤집을 때, int_MAX값 뚫는거 생각해서 long으로 설정하기
The text was updated successfully, but these errors were encountered:
fkdl0048
No branches or pull requests
두 가지 방법으로 정수 그대로 뒤집고 비교하는 방법과 문자열로 변환 후 비교하는 방법이 있음, 펠린드롭 수 특징 상 주어진 정수에서 음수인 경우만 제외하면 추가적인 조치가 필요 없음 (문자열로 주어질 때는 필요) 따라서 정수가 더 효율적임
앞서 풀이한 주어진 숫자 뒤집기 연산을 통해 비교함
결과값 자체가 참 거짓으로 나오기에 반환 연산 생각하기
뒤집을 때, int_MAX값 뚫는거 생각해서 long으로 설정하기
The text was updated successfully, but these errors were encountered: