My Submissions Total Accepted: 14213 Total Submissions: 40773 Difficulty: Medium Contributors: Admin We are pl…
标签:LeetCode
LeetCode | 6. ZigZag Conversion
题目链接:https://leetcode.com/problems/zigzag-conversion/ 题目难度:Medium 题目描述: The string "PAYPALISHIRING" is written…
LeetCode 203. 移除链表元素
题目描述 删除链表中等于给定值 val 的所有节点。 示例: 输入: 1->2->6->3->4->5->6, val = 6 输出: 1->2->3->4->…
二刷103. Binary Tree Zigzag Level Order Traversal
Medium Given a binary tree, return the zigzag level order traversal of its nodes’ values. (ie, from left…
LeetCode:第k个排列
第k个排列 题目叙述: 给出集合 [1,2,3,…,n],其所有元素共有 n! 种排列。 按大小顺序列出所有排列情况,并一一标记,当 n = 3 时, 所有排列如下: “123” “1…
Day 22. Maximum Depth of Binary Tree(104)
问题描述 Given a binary tree, find its maximum depth. The maximum depth is the number of nodes along the longest p…
286. Walls and Gates
Problem You are given a m x n 2D grid initialized with these three possible values. -1 – A wall or an ob…
[剑指offer] 数组中出现次数超过一半的数字
本文首发于我的个人博客:尾尾部落 题目描述 数组中有一个数字出现的次数超过数组长度的一半,请找出这个数字。例如输入一个长度为9的数组{1,2,3,2,2,2,5,4,2}。由于数字2在数组中出现了5次,超过数组长度的一半…
字符流中第一个不重复的字符
题目描述 请实现一个函数用来找出字符流中第一个只出现一次的字符。例如,当从字符流中只读出前两个字符”go”时,第一个只出现一次的字符是”g”。当从该字符流中读出前六个字…
696. Count Binary Substrings
题目地址:https://leetcode.com/problems/count-binary-substrings/description/ 大意:给定一个二进制数字构成的字符串,看有多少个包含0和1数目相同的子字符串…
[剑指offer] 翻转单词顺序列
本文首发于我的个人博客:尾尾部落 题目描述 牛客最近来了一个新员工Fish,每天早晨总是会拿着一本英文杂志,写些句子在本子上。同事Cat对Fish写的内容颇感兴趣,有一天他向Fish借来翻看,但却读不懂它的意思。例如,“…
547. Friend Circles
Medium There are N students in a class. Some of them are friends, while some are not. Their friendship is tran…