发表评论取消回复
相关阅读
相关 【LeetCode】17. Longest Palindrome·最长回文串
> 活动地址:[CSDN21天学习挑战赛][CSDN21] 题目描述 英文版描述 Given a string s which consists of lower
相关 leetcode5. 最长回文子串【暴力】
给你一个字符串 s,找到 s 中最长的回文子串 示例 1: 输入:s = "babad" 输出:"bab" 解释:"aba" 同样是符合题意的答案。 示例 2:
相关 479. 最大回文数乘积
> 你需要找到由两个 n 位数的乘积组成的最大回文数。 > > 由于结果会很大,你只需返回最大回文数 mod 1337得到的结果。 > > 示例: > > 输入:
相关 [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 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 : 409. Longest Palindrome 最长回文
试题: Given a string which consists of lowercase or uppercase letters, find the length o
还没有评论,来说两句吧...