Given two words word1 and word2, find the minimum number of steps required to convert&nb…
分类:LeetCode
LeetCode | Palindrome Number
题目: Determine whether an integer is a palindrome. Do this without extra space. 思路: 翻转数字并与原数字比较。 代码: class Solu…
[LeetCode][Python]66. Plus One
Given a non-negative integer represented as a non-empty array of digits, plus one to the integer. You may assu…