zjlletian's recent timeline updates
zjlletian

zjlletian

V2EX member #272160, joined on 2017-12-04 11:38:26 +08:00
zjlletian's recent replies
4k 60, 用 3070ti 一样能玩
@naoh1000 只是名字叫云端软件,并不是现在的所谓的云的概念,你去了解一下就知道了
Containerd 是基于 linux 的,你想说的应该是 windows 下的云端软件,你搜一下云端软件就知道了,好几年前比较火,不过这玩意儿已经凉的差不多了。。
Oct 27, 2020
Replied to a topic by gdw1986 Python 估计面试没通过,唉
```
package main

import (
"fmt"
)

var items = []int{2, 3, 5, 7, 9}
var target int = 13

func main() {
findSum([]int{}, 0)
}

func findSum(list []int, sum int) {
for _, i := range items {
if sum+i > target {
return
}
newList := append(list, i)
if sum+i == target {
fmt.Println(newList)
return
}
findSum(newList, sum+i)
}
return
}
```

go 的实现
Oct 9, 2020
Replied to a topic by q770787217 FFmpeg ffmpeg 怎么使用滤镜增加文字水印 ?
把文字先做成图不就行了。。。。
May 8, 2020
Replied to a topic by virayer 健康 年纪轻轻,一身病,要开始调理身体了
重度脂肪肝,住院过两次,最近减肥,已经瘦了 20 斤了,还在继续控制
May 3, 2020
Replied to a topic by RRRoger 程序员 [LPR&固定] 做一个简单的统计,关于贷款
已换
About   ·   Help   ·   Advertise   ·   Blog   ·   API   ·   FAQ   ·   Solana   ·   2700 Online   Highest 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 14ms · UTC 12:11 · PVG 20:11 · LAX 05:11 · JFK 08:11
♥ Do have faith in what you're doing.