200 Star 1.6K Fork 451

Gitee Community/bullshit-codes

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
ai.go 400 Bytes
一键复制 编辑 原始数据 按行查看 历史
package main
import (
"bufio"
"fmt"
"os"
"strings"
)
// AI 核心代码, 估值3个亿
func main() {
scanner := bufio.NewScanner(os.Stdin)
for scanner.Scan() {
input := scanner.Text()
input = strings.ReplaceAll(input, "吗", "")
input = strings.ReplaceAll(input, "?", "!")
input = strings.ReplaceAll(input, "?", "!")
fmt.Println(input)
fmt.Println()
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/gitee-community/bullshit-codes.git
git@gitee.com:gitee-community/bullshit-codes.git
gitee-community
bullshit-codes
bullshit-codes
master

搜索帮助