摘要:
Go入门笔记 Go是编译型语言: Go 代码通过 go build 或 go run 等命令来编译成二进制文件。尽管 Go 允许使用 go run 直接执行代码,但背后其实是先将代码编译成二进制文件再执行,而非逐行解释执行。 Go语言常用的命名规范 在 Go 中,导出的(exported)函数名应该 阅读全文
摘要:
携程2025.8.26秋招笔试题解 t1 签到题,手动模拟 python代码 import sys def main(): n = int(input().strip()) cur = 0 num = 0 while True: s = str(num) if cur + len(s) >= n: 阅读全文
摘要:
You are correct in your general observation, but let's clarify the concepts: 1. Structured Data in LLM Training vs Traditional DL Traditional DL model 阅读全文