You are given two jugs with capacities x and y litres. There is an infinite amount of water supply avai…
分类:LeetCode
LeetCode 268 Missing Number
题目描述 Given an array containing n distinct numbers taken from 0, 1, 2, …, n, find the one that is missing from …
27. 移除元素(Swift版)
一、题目 给定一个数组 nums 和一个值 val,你需要原地**移除所有数值等于 *val *的元素,返回移除后数组的新长度。 不要使用额外的数组空间,你必须在原地修改输入数组并在使用 O(1) 额外空间的条件下完成。…
Leetcode之13-罗马数字转整数(Roman to Integer)
前言 个人网站 公众号: 北京程序猿, 网站 : https://yaml.vip 算法题 题干 罗马数字包含以下七种字符: I, V, X, L, C, D和M。字符与数值映射关系如下。 I –> 1…
[LeetCode By Go 103]1. Two Sum
题目 Given an array of integers, return indices of the two numbers such that they add up to a specific target. Y…
100. Same Tree
100. Same Tree 题目 Given two binary trees, write a function to check if they are the same or not. Two binary tr…
力扣(LeetCode)22
题目地址:https://leetcode-cn.com/probl…题目描述:给出 n 代表生成括号的对数,请你写出一个函数,使其能够生成所有可能的并且有效的括号组合。 例如,给出 n = 3,生成结果为:…
LeetCode | Search in Rotated Sorted Array(在旋转数组中查找)
Suppose a sorted array is rotated at some pivot unknown to you beforehand. (i.e., 0 1 2 4 5 6 7 migh…
螺旋方向遍历矩阵
leetcode 上有一道以螺旋方向遍历矩阵的题目https://leetcode.com/problems/spiral-matrix/#/description 题目描述如下: Given a matrix of m…
用动态规划解决通配符匹配字符串问题
leetcode上这个题目出现了两次,基本都是要求答题者写代码完成 ‘*’ 和 ‘?’ 通配符的匹配。 一下摘录其中一题: Implement wildcard patte…
Leetcode之3-无重复字符的最长子串(Longest Substring Without Repeating Characters)
前言 个人网站 公众号: 北京程序猿, 网站 : https://yaml.vip 算法题 题干 给定一个字符串,请你找出其中不含有重复字符的最长子串的长度。 示例 示例 1: 输入: "abcabcbb" 输出: 3 …
LeetCode算法题-Binary Tree Paths(Java实现-3种解法)
这是悦乐书的第199次更新,第206篇原创 01 看题和准备 今天介绍的是LeetCode算法题中Easy级别的第62题(顺位题号是257)。给定二叉树,返回所有根到叶路径。例如: 输入: 1 / \ 2 3 \ 5 输…