package
0.0.0-20190519142212-fe39b3200b40
Repository: https://github.com/imgoogege/leetcode-in-go.git
Documentation: pkg.go.dev
# README
9. Palindrome Number
题目
Determine whether an integer is a palindrome. Do this without extra space.
解题思路
检查一个整数是否是回文。
先把整数转换成字符串,再检查字符串是否是回文。