Determine whether an integer is a palindrome. Do this without extra space. click to show spoilers. Some hints: Could negative integers be palindromes? ...
分类:
编程语言 时间:
2016-04-15 21:43:44
阅读次数:
152
Determine whether an integer is a palindrome. Do this without extra space. Some hints: Could negative integers be palindromes? (ie, -1) If you are thi ...
分类:
其他好文 时间:
2016-04-15 20:00:38
阅读次数:
152
题目:Given a string, determine if it is a palindrome, considering only alphanumeric characters and ignoring cases.For example,
"A man, a plan, a canal: Panama" is a palindrome.
"race a car" is not a pali...
分类:
其他好文 时间:
2016-04-15 12:05:38
阅读次数:
86
Given a singly linked list, determine if it is a palindrome. Follow up:Could you do it in O(n) time and O(1) space? Subscribe to see which companies a ...
分类:
其他好文 时间:
2016-04-14 14:10:38
阅读次数:
118
125 Valid Palindrome 链接:https://leetcode.com/problems/valid-palindrome/ 问题描写叙述: Given a string, determine if it is a palindrome, considering only alph ...
分类:
其他好文 时间:
2016-04-12 19:11:25
阅读次数:
115
Cheapest Palindrome Time Limit: 2000MS Memory Limit: 65536K Total Submissions: 7869 Accepted: 3816 Description Keeping track of all the cows can be a ...
分类:
其他好文 时间:
2016-04-09 00:21:10
阅读次数:
345
2780: Poi2006 Palindromes Description A word is called a palindrome if we read from right to left is as same as we read from left to right. For exampl ...
分类:
其他好文 时间:
2016-04-08 18:16:40
阅读次数:
429
Given a string s, partition s such that every substring of the partition is a palindrome. Return all possible palindrome partitioning of s. For exampl ...
分类:
其他好文 时间:
2016-04-08 10:11:34
阅读次数:
187