发表评论取消回复
相关阅读
相关 564 寻找最近的回文数(脑筋急转弯)
1. 问题描述: 给定一个整数 n ,你需要找到与它最近的回文数(不包括自身)。"最近的"定义为两个整数差的绝对值最小。 示例 1: 输入: "123" 输出: "1
相关 [Leetcode][python]Palindrome Number/回文数
题目大意 判断一个整数(integer)是否是回文,不要使用额外的空间。 解题思路 大概就是告诉我们: 1,负数都不是回文数; 2,不能通过将数字转为字符串来
相关 leetcode 336. Palindrome Pairs 回文数字符串对 + Map加速暴力查询
Given a list of unique words, find all pairs of distinct indices (i, j) in the given lis
相关 leetcode 658. Find K Closest Elements 寻找绝对距离最近K个元素+ 双指针遍历
Given a sorted array, two integers k and x, find the k closest elements to x in the arra
相关 leetcode 564. Find the Closest Palindrome 寻找最近回文数字 + 暴力求解
Given an integer n, find the closest integer (not including itself), which is a palindro
相关 leetcode 479. Largest Palindrome Product 最大的回文数字 + 直接暴力真好
Find the largest palindrome made from the product of two n-digit numbers. Since the res
相关 LeetCode 9. Palindrome Number (回文数)
题目描述: 判断一个整数是否是回文数。回文数是指正序(从左向右)和倒序(从右向左)读都是一样的整数。 示例1: 输入: 121 输出: true 示例2
相关 【leetcode】回文数(Palindrome Number)【python】
[题目链接][Link 1] ![这里写图片描述][70] class Solution: def isPalindrome(self, x):
相关 leetcode Longest Palindromic Substring(动态规划求解最长回文子串)
[https://leetcode.com/problems/longest-palindromic-substring/][https_leetcode.com_proble
还没有评论,来说两句吧...