V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  sherlockwhite  ›  全部回复第 13 页 / 共 77 页
回复总数  1527
1 ... 9  10  11  12  13  14  15  16  17  18 ... 77  
2023-09-13 14:48:49 +08:00
回复了 cat 创建的主题 旅行 国庆计划开车 2000 多公里,有什么建议或心得吗?
@eluotao #35 我也是广东到江苏,国庆回去嘛哈哈哈哈
2023-09-13 14:31:10 +08:00
回复了 cat 创建的主题 旅行 国庆计划开车 2000 多公里,有什么建议或心得吗?
从哪里到哪里,看看能不能把我带回去,机票太贵了哈哈哈
2023-09-06 09:58:08 +08:00
回复了 ENIAC 创建的主题 程序员 使用 AND 和 OR 运算符实现的加密程序该如何解密?
```
const decode = cipher => {
let result = ''
for(let i = 0; i < cipher.length; i+=4) {
const a = codeTable.indexOf(cipher[i])
const b = codeTable.indexOf(cipher[i+1])
const c = codeTable.indexOf(cipher[i+2])
const d = codeTable.indexOf(cipher[i+3])

const n1 = a << 2 | b >> 4
const n2 = (b & 15) << 4 | c >> 2
const n3 = (c & 3) << 6 | d
result += String.fromCharCode(n1)
if(c != 64) {
result += String.fromCharCode(n2)
}
if(d != 64) {
result += String.fromCharCode(n3)
}
}
return result
}
```
分母
2023-09-04 18:31:39 +08:00
回复了 cheneydog 创建的主题 问与答 国庆开长途回老家,有啥合适的车险么?
@iMiata #15 你要赌概率嘛
2023-09-04 11:55:38 +08:00
回复了 barryzhai 创建的主题 宽带症候群 提升从英国访问国内家中 NAS 速度
其实我觉得可以把硬盘拆了带着 最方便
2023-08-28 10:53:31 +08:00
回复了 Kung815 创建的主题 OpenAI 挂一个令人恶心的 gpt 合租商,大家避雷
《你不干有的是人干》
1 ... 9  10  11  12  13  14  15  16  17  18 ... 77  
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   1054 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 37ms · UTC 19:26 · PVG 03:26 · LAX 11:26 · JFK 14:26
Developed with CodeLauncher
♥ Do have faith in what you're doing.