这是悦乐书的第281次更新,第298篇原创 01 看题和准备 今天介绍的是LeetCode算法题中Easy级别的第149题(顺位题号是657)。在2D平面上有一个从位置(0,0)开始的机器人。给定其移动序列,判断该机器人…
标签:LeetCode
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…
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可以做, 在网上又搜了一下,貌似可以有很多牛逼的优化,我暂时还没去看。 很郁闷的就是条件不明,原来只需要从’++’转到’–̵…
LeetCode 总结 - 搞定 Stack 面试题
[20] Valid Parentheses:判断括号是否合法 [32] Longest Valid Parentheses:最长合法的括号 [232] Implement Queue using Stacks:用两个栈…
Leetcode 95. Unique Binary Search Trees II
Given an integer n, generate all structurally unique BST’s (binary search trees) that store values 1R…
LeetCode 197. Rising Temperature
LeetCode 197. Rising Temperature 题目 Given a Weather table, write a SQL query to find all dates’ Ids with…
LeetCode算法题-Find Smallest Letter Greater Than Target(Java实现)
这是悦乐书的第306次更新,第326篇原创 01 看题和准备 今天介绍的是LeetCode算法题中Easy级别的第175题(顺位题号是744)。给定一个仅包含小写字母的有序字符数组,并给定目标字母目标,找到数组中大于给定…