Problem LeetCode Given a binary search tree, write a function kthSmallest to find the kth smallest element in it. Example 1: Input: root = [3,1,4,null ...
分类:
编程语言 时间:
2021-01-11 10:45:32
阅读次数:
0
StringBuilder package com.keytech.task; import java.util.concurrent.CountDownLatch; import java.util.concurrent.ExecutorService; import java.util.conc ...
分类:
其他好文 时间:
2021-01-08 11:28:26
阅读次数:
0
问题: 给定一串由数字构成的字符串。 给任意两个数字间添加'.',一共加3次,求能得到的所有有效的IP格式。 Example 1: Input: s = "25525511135" Output: ["255.255.11.135","255.255.111.35"] Example 2: Inpu ...
分类:
其他好文 时间:
2021-01-08 11:18:15
阅读次数:
0
问题: 给定一个计量括号数量的数字n,求所有的括号组合可能序列。 Example 1: Input: n = 3 Output: ["((()))","(()())","(())()","()(())","()()()"] Example 2: Input: n = 1 Output: ["()"] ...
分类:
其他好文 时间:
2021-01-05 11:32:45
阅读次数:
0
?fetch('ftp://example.com').catch(err => console.error('Caught error: ', err) ?判断一个变量是不是NaN isNaN( )判断字符串的时候也会返回true。 1 var a = "str"; 2 var b = 2; 3 ...
分类:
其他好文 时间:
2021-01-04 11:11:28
阅读次数:
0
目的如题。确保python中安装了opencv-python模块。如果没有安装,可以参考:https://pypi.org/project/opencv-python/进行安装。话不多少,直接上代码:importcv2cap=cv2.VideoCapture(0)f,frame=cap.read()#此刻拍照cv2.imwrite("example.png",frame)#将拍摄内容保存为png图
分类:
编程语言 时间:
2021-01-02 11:45:12
阅读次数:
0
吐槽 今天想重新复习一下之前项目整合的一个框架 于是找到了之前教程里当天提供的代码,在里面有还未整合该框架的代码 导入代码后一直报错xxxExample cannot be ...这样的错误 于是我搜了一圈然后设置了一圈都没解决 换个思路,我知道Example类是mybatis的逆向工程生成的类 于 ...
分类:
其他好文 时间:
2021-01-02 10:37:33
阅读次数:
0
官方教程地址:https://golang.google.cn/doc/tutorial/call-module-code 1.在代码目录创建一个目录greetings 用来存放 greetings 模块 2.生成go.mod文件 // 官方文档写的是example.com/greetings,我这 ...
分类:
其他好文 时间:
2020-12-31 12:54:24
阅读次数:
0
一 Mac中git ssh配置基本流程:https://www.jianshu.com/p/601735ce7113 生成秘钥:ssh-keygen -t rsa -C "your_email@example.com" (注意ssh后面不能有空格) 验证Key是否配置成功:ssh -T git@gi ...
分类:
其他好文 时间:
2020-12-31 11:52:17
阅读次数:
0
Firecracker Firecracker is a new light KVM-based hypervisor written in Rust and announced during last AWS re:Invent in 2018. But unlike QEMU, Firecrac ...
分类:
其他好文 时间:
2020-12-30 11:12:12
阅读次数:
0