题库 总和leetcode 39
Shape search in Visio doesn't work
from http://visguy.com/vgforum/index.php?topic=9021.0 This problem is as old as Visio itself I guess :- Visio shape search depends on Windows search ( ......
[LeetCode] 1578. Minimum Time to Make Rope Colorful
Alice has n balloons arranged on a rope. You are given a 0-indexed string colors where colors[i] is the color of the ith balloon. Alice wants the rope ......
405错误---Request method 'POST' not supported
错误: Request method 'POST' not supported -- 方法不支持 解决: 多数情况下, 是由于GET,POST,DELETE,PUT等方法类型不一致导致的。 所以将请求方法改回就好。例:此处的@Get方法改为@Post ......
【五期李伟平】CCF-A(TMC'22)Enabling Long-Term Cooperation in Cross-Silo Federated Learning: A Repeated Game Perspective
Zhang, Ning , Q. Ma , and X. Chen . "Enabling Long-Term Cooperation in Cross-Silo Federated Learning: A Repeated Game Perspective." (2022). 针对重复执行跨筒仓联 ......
[LeetCode Hot 100] LeetCode111. 二叉树的最小深度
题目描述 思路 二叉树的最小深度就是第一个叶子节点所在的层数 方法一:前序遍历(递归、dfs) /** * Definition for a binary tree node. * public class TreeNode { * int val; * TreeNode left; * TreeN ......
[LeetCode Hot 100] LeetCode110. 平衡二叉树
题目描述 思路 LeetCode104. 二叉树的最大深度 变种 方法一:后序遍历(递归、dfs) /** * Definition for a binary tree node. * public class TreeNode { * int val; * TreeNode left; * Tre ......
[LeetCode Hot 100] LeetCode543. 二叉树的直径
题目描述 思路 所谓二叉树的直径,就是左右子树的最大深度之和。 方法一: /** * Definition for a binary tree node. * public class TreeNode { * int val; * TreeNode left; * TreeNode right; ......
[LeetCode Hot 100] LeetCode104. 二叉树的最大深度
题目描述 思路 熟练掌握二叉树的遍历算法 方法一:层序遍历(迭代)+计数 /** * Definition for a binary tree node. * public class TreeNode { * int val; * TreeNode left; * TreeNode right; ......
[LeetCode Hot 100] LeetCode102. 二叉树的层序遍历
题目描述 思路 方法一:递归 /** * Definition for a binary tree node. * public class TreeNode { * int val; * TreeNode left; * TreeNode right; * TreeNode() {} * Tree ......
[LeetCode Hot 100] LeetCode144. 二叉树的前序遍历
题目描述 思路 熟练掌握迭代和递归的代码。 递归代码:额外写一个函数void preOrder(TreeNode node, List res) 迭代代码:会用到数据结构——栈。先入栈当前节点的右子节点,再入栈左子节点。 方法一:递归 /** * Definition for a binary tr ......
[LeetCode Hot 100] LeetCode94. 二叉树的中序遍历
题目描述 思路 熟练掌握迭代和递归的代码。 递归:额外写一个函数void inOrder(TreeNode node, List res) 迭代:令cur = root,一直往左子树找,找到最后一个左子节点,当cur为空,就开始处理栈顶元素(将栈顶元素加入结果集),随后将cur设置为右子节点,继续执 ......
[LeetCode Hot 100] LeetCode145. 二叉树的后序遍历
题目描述 思路 递归:额外写一个函数void postOrder(TreeNode node, List res) 迭代: 前序遍历:根 左 右 将前序遍历改造成:根 右 左 然后反转根右左为:左 右 根,即为后序遍历 优化一下: while (!stack.isEmpty()) { TreeNod ......
Leetcode每日一题
目录202312/2512/2612/27 2023 12月往前的应该就不会补题解了,大概有时间会往前一直补到12/1的题解 12/25 1276. 不浪费原料的汉堡制作方案 题目分析: 数学题,解二元一次方程即可 具体过程有$$\left { \begin{array}{c}4x+2y=tomat ......
Spring '24来啦|Salesforce新功能先睹为快!
Spring '24发布在即,作为紧跟技术的学习者,来看看Spring '24新版本为你量身定制的声明性功能吧! 01 新的动态表单与相关对象字段 此前,如果需要将父记录中的信息显示到子记录中,你需要创建一个公式字段或使用Quick Update操作,并在Lightning页面中显示。在Spring ......
You should consider upgrading via the 'C:\Users\榕宝\PycharmProjects\djangoProject\venv\Scripts\python.exe -m pip install --upgrade pip' command.
python -m pip install --upgrade pip ......
【动态规划】leetcode 不同路径问题
题目名称:63. 不同路径 II 链接:https://leetcode.cn/problems/unique-paths-ii/description/ 题目内容: 一个机器人位于一个 m x n 网格的左上角 (起始点在下图中标记为 “Start” )。 机器人每次只能向下或者向右移动一步。机器 ......
nested exception is org.apache.ibatis.type.TypeException: Could not set parameters for mapping: ParameterMapping{property='name
org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.type.TypeException: Could not set parameters for mapping: ParameterMa ......
解决前端vue2报错 Error: Can't resolve cache-loader和Error: Can't resolve babel-loader等
总得说来报这种Error: Can't resolve+模块名字的错误,一般就只有两种原因:一、少了这个包(直接安装:pnpm add -D 模块名字@版本),二、有这个包,但是版本在package.json中不正确。需要和你的vue/cli-service的版本对应上,该降级的时候降级,降级一般先 ......
[LeetCode] 2660. Determine the Winner of a Bowling Game
You are given two 0-indexed integer arrays player1 and player2, that represent the number of pins that player 1 and player 2 hit in a bowling game, re ......
Day39 数组基本特点及下标越界,小结
数组基本特点及下标越界,小结 数组的4个基本特点: 1.其长度是确定的。数组一旦被创建,它的大小就是不可以改变的。 2.其元素必须是相同类型,不允许出现混合类型。 3.数组中的元素可以是任何数据类型,包括基本类型和引用类型。 4.数组变量属引用类型,数组也可以看成是对象,数组中的每个元素相当于该对象 ......
Lucy's experience(B2.2)
This year has been very difficult for me. I lost my job at the start of the year and I've been feeling very frustrated. Luckily I live with my partner ......
Cannot read properties of null (reading 'parentElement')问题的解决
问题描述 出现了一堆这种报错,echarts真的,我的一生之敌~~~~~ 问题解决 发现,我使用输入框,将文本内容传递到后端,然后再传回到这个界面,就直接引起了整体的报错,在我去掉输入框时, 这个错误就被解决啦~~~ 所以,我就直接将条件输入的文本框与图表分开了,这样就能够解决上面那个问题啦! ......
【五期李伟平】CCF-A(S&P'20)The Value of Collaboration in Convex Machine Learning with Differential Privacy
Nan W., et al. “The Value of Collaboration in Convex Machine Learning with Differential Privacy.” 2020 IEEE Symposium on Security and Privacy. 304-317 ......
二叉树路径总和系列问题
二叉树路径总和系列问题 作者:Grey 原文地址: 博客园:二叉树路径总和系列问题 CSDN:二叉树路径总和系列问题 LeetCode 112. 路径总和 定义递归函数 boolean process(TreeNode node, int preSum, int target) 递归含义表示:从 n ......
ORA-01113: file 69 needs media recovery ORA-01110: data file 69: 'E:\FWPTDB\DBFFILES\HNRZ\HNRZFW.DBF
继续上一篇写 1、当解决了ORA-01033 : ORACLE initialization or shutdown in progress 这个问题后重新连接此数据库的时候又出现以下问题 ORA-01113: file 69 needs media recovery ORA-01110: data ......
39.android maxim 遍历测试工具
maxim 介绍 An efficient Android Monkey Tester, available for emulators and real devices 基于遍历规则的高性能 Android Monkey,适用于真机/模拟器的 APP UI 压力测试 maxim quick sta ......
PyQt报错:Cannot load backend 'Qt5Agg' which requires the 'qt5' interactive framework, as 'headless' is currently running
PyQt报错:Cannot load backend 'Qt5Agg' which requires the 'qt5' interactive framework, as 'headless' is currently running 问题描述 在远程链接ubuntu虚拟机进行开发时,报错。 解决 ......
leetcode 1633. 各赛事的用户注册率
https://leetcode.cn/problems/percentage-of-users-attended-a-contest/?envType=study-plan-v2&envId=sql-free-50 聚合函数分组后计算的是一组内的数据, 分组前我们认为所有数据是一组 本题注意还需要 ......
【LeetCode】131. 分割回文串
题目 给你一个字符串 s,请你将 s 分割成一些子串,使每个子串都是 回文串 。返回 s 所有可能的分割方案。 回文串 是正着读和反着读都一样的字符串。 示例 1: 输入:s = "aab" 输出:[["a","a","b"],["aa","b"]] 示例 2: 输入:s = "a" 输出:[["a ......