Given a binary tree, return all root-to-leaf paths. Note: A leaf is a node with no children. Example: Input: 1 / \ 2 3 \ 5 Output: ["1->2->5", "1->3"] ...
分类:
其他好文 时间:
2020-05-25 10:54:39
阅读次数:
51
报错:No cache could be resolved for 'Builder[public abstract com.example.cache.generate.Department com.example.cache.generate.DepartmentDao.selectByPrim ...
分类:
系统相关 时间:
2020-05-25 00:27:12
阅读次数:
315
1038 Recover the Smallest Number (30分) Given a collection of number segments, you are supposed to recover the smallest number from them. For example, ...
分类:
编程语言 时间:
2020-05-25 00:13:01
阅读次数:
66
```java package com.example.demo.demo; import java.util.concurrent.*; import java.util.Date; import java.util.List; import java.util.ArrayList; /** * ... ...
分类:
编程语言 时间:
2020-05-24 21:21:06
阅读次数:
73
第一种是使用 G2Plot 对象上的 changeData 方法,如果不涉及到全局 title 等这些的更改,可以采用这种方式。 也就是说,只有纯数据方面的变动,使用 changeData 更新图表数据 效率最高。 https://antv-g2plot.gitee.io/zh/examples/l ...
分类:
其他好文 时间:
2020-05-24 19:16:02
阅读次数:
677
问题: 给定数组,判断若为单调增(A[i]>=A[i-1])或者单调减(A[i]<=A[i-1])数组,则返回true,否则返回false。 Example 1: Input: [1,2,2,3] Output: true Example 2: Input: [6,5,4,4] Output: tr ...
分类:
其他好文 时间:
2020-05-24 12:04:46
阅读次数:
41
Find the sum of all left leaves in a given binary tree. Example: 3 / \ 9 20 / \ 15 7 There are two left leaves in the binary tree, with values 9 and 1 ...
分类:
其他好文 时间:
2020-05-24 11:27:13
阅读次数:
52
安装git apt get install git 配置git的用户名和邮箱: ssh keygen trsa C "youremail@example.com" ssh keygen trsa C "huanghoujie@163.com" 查看用户名和邮箱是否设置成功:git config li ...
分类:
系统相关 时间:
2020-05-24 11:23:49
阅读次数:
119
获取http状态码,如果返回状态码不是200,则会每隔5秒重新获取一次,但是不超过3次#!/bin/envpython#-*-coding:UTF-8-*-#Author:刘小懒#example:pythonhttp_status.pyota_listimportrequestsimporttimeimportsysfromthreadingimportThreaddefhttp_status(a
分类:
编程语言 时间:
2020-05-24 09:15:14
阅读次数:
64
The Node.js framework is mostly used to create server based applications. The framework can easily be used to create web servers which can serve conte ...
分类:
Web程序 时间:
2020-05-24 00:54:25
阅读次数:
90