package
0.0.0-20210525112244-a601ee6fe7cf
Repository: https://github.com/smartsyoung/leetcode-in-go.git
Documentation: pkg.go.dev

# README

9. Palindrome Number

题目

Determine whether an integer is a palindrome. Do this without extra space.

解题思路

检查一个整数是否是回文。

先把整数转换成字符串,再检查字符串是否是回文。