Given a string s, partition s such that every substring of the partition is a palindrome. Retur…
分类:LeetCode
LeetCode算法题-Robot Return to Origin(Java实现)
这是悦乐书的第281次更新,第298篇原创 01 看题和准备 今天介绍的是LeetCode算法题中Easy级别的第149题(顺位题号是657)。在2D平面上有一个从位置(0,0)开始的机器人。给定其移动序列,判断该机器人…
LeetCode算法题-Excel Sheet Column Number(Java实现)
这是悦乐书的第182次更新,第184篇原创 01 看题和准备 今天介绍的是LeetCode算法题中Easy级别的第41题(顺位题号是171)。给定Excel工作表中显示的列标题,返回其对应的列号。例如: A –…
LeetCode 的 Python 实现 88: 合并两个有序数组
给定两个有序整数数组 nums1 和 nums2,将 nums2 合并到 nums1 中,使得 num1 成为一个有序数组。 说明: 初始化 nums1 和 nums2 的元素数量分别为 m 和 n。 你可以假设 num…
905. Sort Array By Parity
描述 Given an array A of non-negative integers, return an array consisting of all the even elements of A, follow…
[LeetCode By Go 51]409. Longest Palindrome
题目 Given a string which consists of lowercase or uppercase letters, find the length of the longest palindromes…
[LeetCode] Dungeon Game 地牢游戏
The demons had captured the princess (P) and imprisoned her in the bottom-right corner of a dungeon. The du…
60. Permutation Sequence
The set [1,2,3,…,n] contains a total of n! unique permutations.By listing and labeling all of the permut…
LeetCode104.Maximum Depth of Binary Tree
Given a binary tree, find its maximum depth. The maximum depth is the number of nodes along the longest path f…
2018-01-28 使用异或操作实现两个数的交换
原理:异或操作,对于二进制位:如果a、b两个值不相同,则异或结果为1。如果a、b两个值相同,异或结果为0。对于十进制数:两个相同的数异或操作后等于0; 条件:a != b,且 a+b不会溢出。 操作: a = a ^ b…
[leetcode] 74. 搜索二维矩阵
题目分析 这个题目是一维二分法的变形. link http://www.cnblogs.com/acbingo/p/9374587.html python 代码 class Solution(object): def s…
LeetCode[10] - Flip Game
这个题目是很寂寞的. 2 pointer可以做, 在网上又搜了一下,貌似可以有很多牛逼的优化,我暂时还没去看。 很郁闷的就是条件不明,原来只需要从’++’转到’–̵…