码迷,mamicode.com
首页 >  
搜索关键字:palindrome    ( 1561个结果
LeetCode 9. Palindrome Number
很简单。 ...
分类:其他好文   时间:2018-08-07 15:15:44    阅读次数:109
*Amazon problem: 234. Palindrome Linked List (reverse the linked list with n time)
Given a singly linked list, determine if it is a palindrome. Example 1: Example 2: Follow up:Could you do it in O(n) time and O(1) space? Sloving with ...
分类:其他好文   时间:2018-08-05 11:51:59    阅读次数:120
Lintcode627 - Longest Palindrome - easy
Description Given a string which consists of lowercase or uppercase letters, find the length of the longest palindromes that can be built with those l ...
分类:其他好文   时间:2018-08-04 11:47:41    阅读次数:116
9. Palindrome Number
一、题目 1、审题: 2、分析: 判断数字是否回文 二、解答 1、分析: 方法一: 将数字反转,看是否和反转前相等 方法二:仅反转 x 的一半,在判断是否回味 方法三:利用 StringBuffer 的 reverse方法 直接进行判断; ...
分类:其他好文   时间:2018-08-01 11:57:52    阅读次数:156
JavaScript 常见笔试算法及代码
1 /*判断字符串是否为回文*/ 2 /*回文:如果一个字符串忽略标点符号、大小写和空格,正着读和反着读一模一样,那么这个字符串就是palindrome*/ 3 function palindrome(str){ 4 let astr=str.replace(/[^0-9A-Za-z]/g,'').... ...
分类:编程语言   时间:2018-07-31 19:26:15    阅读次数:162
E - Palindrome Numbers
题目链接:https://vjudge.net/contest/237394#problem/E A palindrome is a word, number, or phrase that reads the same forwards as backwards. For example, the ...
分类:其他好文   时间:2018-07-26 10:46:32    阅读次数:103
Code Signal_练习题_palindromeRearranging
Given a string, find out if its characters can be rearranged to form a palindrome. Example For inputString = "aabb", the output should bepalindromeRea ...
分类:其他好文   时间:2018-07-24 23:47:05    阅读次数:246
leetcode 9. Palindrome Number
Determine whether an integer is a palindrome. An integer is a palindrome when it reads the same backward as forward. Example 1: Input: 121 Output: tru ...
分类:其他好文   时间:2018-07-21 14:41:52    阅读次数:130
336. Palindrome Pairs
问题描述: Given a list of unique words, find all pairs of distinct indices (i, j) in the given list, so that the concatenation of the two words, i.e. word ...
分类:其他好文   时间:2018-07-21 12:15:57    阅读次数:172
五个实用的Python案例题,非常有用!
Valid Anagram 题目 思路与解答 答案 Valid Palindrome 题目 思路与解答 答案 Valid Palindrome II 题目 思路与解答 答案 Valid Parentheses 题目 思路与解答 答案 Valid Perfect Square 题目 思路与解答 答案 ...
分类:编程语言   时间:2018-07-09 22:28:24    阅读次数:282
1561条   上一页 1 ... 26 27 28 29 30 ... 157 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!