Easy 反正不记得第几次做了,树的题除了考divide and conquer或者recursion到底还能考什么? /** * Definition for a binary tree node. * public …
分类:LeetCode
647. 回文子串
这道题目和求解最长回文子串的题目是一样的框架结构, 不同的地方在于这到题目统计的是总数. class Solution(object): def countSubstrings(self, s): """ :type s…
375. Guess Number Higher or Lower II
My Submissions Total Accepted: 14213 Total Submissions: 40773 Difficulty: Medium Contributors: Admin We are pl…
[LeetCode] Odd Even Linked List 奇偶链表
Given a singly linked list, group all odd nodes together followed by the even nodes. Please note here w…
[LeetCode] Minimum Factorization 最小因数分解
Given a positive integer a, find the smallest positive integer b whose multiplication of…
力扣(LeetCode)609
题目地址:https://leetcode-cn.com/probl…题目描述:给定一个目录信息列表,包括目录路径,以及该目录中的所有包含内容的文件,您需要找到文件系统中的所有重复文件组的路径。一组重复的文件…
Leetcode PHP题解--D13 627. Swap Salary
627. Swap Salary 题目链接 627. Swap Salary 题目分析 本题是一个SQL题。 题目要求对调用户性别。 思路 用CASE...WHEN...THEN...ELSE...END即可。 最终代码…
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…