描述: Follow up for problem “Populating Next Right Pointers in Each Node”. What if the given tree co…
分类:LeetCode
LeetCode:岛屿的最大面积
岛屿的最大面积 题目叙述: 给定一个包含了一些 0 和 1的非空二维数组 grid , 一个 岛屿 是由四个方向 (水平或垂直) 的 1 (代表土地) 构成的组合。你可以假设二维矩阵的四个边缘都被水包围着。 找到给定的二…
[LeetCode By Go 62]415. Add Strings
题目 Given two non-negative integers num1 and num2 represented as string, return the sum of num1 and num2. Note:…
18. 4Sum
欢迎fork and star:Nowcoder-Repository-github 18. 4Sum 题目 Given an array S of n integers, are there elements a, b…
15. 3Sum
15. 3Sum 题目 Given an array S of n integers, are there elements a, b, c in S such that a + b + c = 0? Find all …
LeetCode 217 Contains Duplicate
题目描述 Given an array of integers, find if the array contains any duplicates. Your function should return true i…
33. 搜索旋转排序数组(Swift版)
一、题目 假设按照升序排序的数组在预先未知的某个点上进行了旋转。 ( 例如,数组 [0,1,2,4,5,6,7] 可能变为 [4,5,6,7,0,1,2] )。 搜索一个给定的目标值,如果数组中存在这个目标值,则返回它的…
[剑指offer] 扑克牌顺子
本文首发于我的个人博客:尾尾部落 题目描述 LL今天心情特别好,因为他去买了一副扑克牌,发现里面居然有2个大王,2个小王(一副牌原本是54张_)…他随机从中抽出了5张牌,想测测自己的手气,看看能不能抽到顺子,…
[LeetCode] Median of Two Sorted Arrays 两个有序数组的中位数
There are two sorted arrays nums1 and nums2 of size m and n respectively. Find the …
[LeetCode] Text Justification 文本左右对齐
Given an array of words and a length L, format the text such that each line has exactly L&nbs…
LeetCode | Search Insert Position
题目: Given a sorted array and a target value, return the index if the target is found. If not, return the index…
[Leetcode] Kth Smallest Element in a BST 二叉搜索树第k小节点
Kth Smallest Element in a BST Given a binary search tree, write a function kthSmallest to find the kth smalles…