题目描述 Reverse bits of a given 32 bits unsigned integer. For example, given input 43261596 (represented in binar…
分类:LeetCode
[Leetcode] Walls and Gates 墙与门
Walls and Gates You are given a m x n 2D grid initialized with these three possible values. -1 – A wall …
LeetCode-557. Reverse Words in a String III
问题描述 Given a string, you need to reverse the order of characters in each word within a sentence while still pr…
【LeetCode】- Sort Colors(荷兰国企,颜色分类)
1、题目描述 Given an array with n objects colored red, white or blue, sort them in-place so that objects of the sam…
2018-07-03 12. Integer to Roman
题意:给你一个数字,转换成罗马数字,需要遵循罗马数字排布的一些规则。 解题思路: 思路一:因为9和4比较特殊,其余的就是直接累计,可以把罗马数字分成9,5,4,1的对应表,然后逐一遍历将对应的罗马符号放入该位即可。 cl…
[Leetcode]21. 合并两个有序链表
题目描述: 将两个有序链表合并为一个新的有序链表并返回。新链表是通过拼接给定的两个链表的所有节点组成的。 示例: 输入:1->2->4, 1->3->4 输出:1->1->2->…
[LeetCode] Distinct Subsequences 不同的子序列
Given a string S and a string T, count the number of distinct subsequences of T&nbs…
力扣(LeetCode)448
题目地址:https://leetcode-cn.com/probl…题目描述:给定一个范围在 1 ≤ a[i] ≤ n ( n = 数组大小 ) 的 整型数组,数组中的元素一些出现了两次,另一些只出现一次。…
LeetCode | Same Tree(相等的二叉树)
Given two binary trees, write a function to check if they are equal or not. Two binary trees are considered eq…
[LeetCode][Python]283. Move Zeroes
Given an array nums, write a function to move all 0‘s to the end of it while maintaining the relative or…
[leetcode]柠檬水找零&&weekly-contest-91总结
题目链接:柠檬水找零 前文 又是一个周末,第一次参加leetcode的weekly-contest。早上起的晚了,匆匆忙忙打开室友的电脑(恩,他不在,也没有密码),就开始上午的刷题了。目前能力也是很菜滴,只做出两个,一个…
[剑指offer] 和为S的两个数字
本文首发于我的个人博客:尾尾部落 题目描述 输入一个递增排序的数组和一个数字S,在数组中查找两个数,使得他们的和正好是S,如果有多对数字的和等于S,输出两个数的乘积最小的。 解题思路 法一:哈希法。用一个HashMap,…