suikalo's recent timeline updates
suikalo

suikalo

V2EX member #278292, joined on 2018-01-01 22:54:35 +08:00
suikalo's recent replies
@yangg 那个是直接用的别人的成品
@maxiujun 当时考虑 homebridge 了,感觉有点麻烦。要搞一堆东西。。
@Zchary
@599CharlesLau
就是格力的普通空调,然后树莓派上接了个负责红外发射的三极管(某宝 2 块钱不包邮)。
信号序列不需要录制是预先生成的。
Jun 27, 2019
Replied to a topic by yongzhong 杭州 杭州人民喜提垃圾分类
真的是水深火热
May 7, 2019
Replied to a topic by guiqiqi 程序员 用无线渗透的方法让室友按时休息
deauth 了解一下
为什么不用 kubernetes 呢
```
package main
import (
"fmt"
)
func solve(money, x, y, z, last int) int{
if money == 0 {
return 1
}
count := 0
if money >= 1{
count = count + solve(money - 1, x + 1, y, z, 1)
}
if money >= 2 && last >= 2{
count = count + solve(money - 2, x, y + 1, z, 2)
}
if money >= 5 && last == 5{
count = count + solve(money - 5, x, y, z + 1, 5)
}
return count
}
func main(){
fmt.Println(solve(100, 0, 0, 0, 5))
}
```

Golang 版
About   ·   Help   ·   Advertise   ·   Blog   ·   API   ·   FAQ   ·   Solana   ·   3176 Online   Highest 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 15ms · UTC 03:47 · PVG 11:47 · LAX 20:47 · JFK 23:47
♥ Do have faith in what you're doing.