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
Linux 指令 & 快捷键 指令 date 时间 cal 日历 df 磁盘状态 free 内存状态 exit 退出会话 pwd 显示工作目录 ls ${paths} 显示文件列表 ls -a 显示隐藏文件 ls -l 长模式输出 ls -t 根据修改时间倒序排序 ls -r 翻转结果顺序 ls - ...
分类:
系统相关 时间:
2021-05-24 16:23:20
阅读次数:
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
1:error: non-void function does not return a value in all control paths [-Werror,-Wreturn-type] } 答:问题在于if else这种写法中没有写全,比如只写了if后返回XXX。没写if不成功情况下返回XXX ...
分类:
其他好文 时间:
2021-05-24 10:41:53
阅读次数:
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
前言 Django的配置文件settings.py用于配置整个网站的环境和功能,核心配置必须有项目路径、密钥配置、域名访问权限、App列表、中间件、资源文件、模板配置、数据库的连接方式 基本配置信息 import os # 项目路径 # Build paths inside the project ...
分类:
其他好文 时间:
2021-05-24 06:51:57
阅读次数:
0
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