437. 路径总和 III class Solution: def pathSum(self, root: TreeNode, sum: int) -> int: dp = {} def search(root: TreeNode): if root: search(root.left) searc ...
分类:
编程语言 时间:
2021-05-24 17:23:14
阅读次数:
0
Here’s to the crazy ones. The misfits. The rebels. The troublemakers. The round pegs in the square holes. The ones who see things differently. They’re ...
分类:
其他好文 时间:
2021-05-24 16:46:31
阅读次数:
0
初级命令 搜索镜像 docker search ubuntu //一般靠前的是官方镜像,其他是用户自己创建并分享的 下载镜像 docker pull ubuntu //默认下载最新版本的 列出下载的镜像 docker images 创建并使用容器 docker run -i -t --name he ...
分类:
其他好文 时间:
2021-05-24 14:34:45
阅读次数:
0
arcgis 相关安装 见 http://www.driver114.com/plus/search.php?keyword=arcgis&searchtype=titlekeyword&channeltype=0&orderby=&kwtype=0&pagesize=10&typeid=0&Tot ...
分类:
其他好文 时间:
2021-05-24 12:53:03
阅读次数:
0
说明 视频地址: https://www.bilibili.com/video/BV1uE411d7L5?from=search&seid=6807897890479939370 博客地址: https://blog.csdn.net/java_lyvee content 1 spring中的循环依 ...
分类:
编程语言 时间:
2021-05-24 10:19:14
阅读次数:
0
##General English:7 ###Unit4 Talking about your TV viewing habits ###Vocabulary documentary a television documentary about/on the future of nuclear po ...
1 sudo apt-get update 更新源 2 sudo apt-get install package 安装包 3 sudo apt-get remove package 删除包 4 sudo apt-cache search package 搜索软件包 5 sudo apt-cache ...
分类:
其他好文 时间:
2021-05-24 06:42:21
阅读次数:
0
1. 相关版本 项目 版本号 windows版本 win10(19041.928) vmware版本 15.02 centos版本 CentOS-8.3.2011 2. 安装步骤 2.1 使用VMware新建虚拟机功能创建虚拟机 2.2 选择【典型(推荐)】进行创建 2.3 选择【稍后安装操作系统】 ...
1、打开Scopus,使用【检索】-【作者检索】 scopus网址(中文):https://www.scopus.com/search/form.uri?display=authorLookup#author scopus网址(英文):https://blog.scopus.com/ 2、定位作者 ...
分类:
其他好文 时间:
2021-05-24 05:12:13
阅读次数:
0
一、线性查找 1.基本思想: 从左到右挨个查找 2.特点: 查找效率慢 3.代码: import java.util.Scanner; /** * @author: TSCCG * @date: 2021/5/10 */ public class Search { /** * 1.线性查找 * 查询 ...
分类:
编程语言 时间:
2021-05-24 04:31:47
阅读次数:
0