Heran Yang
Heran Yang
I found that we used sonic https://github.com/cloudwego/hertz/blob/develop/pkg/app/server/binding/internal/decoder/sonic_required.go here, but with a wrong(?) `gjson` tag. Not sure whether we should change it to `stdjson`.
@li-jin-gou Hi. The code above cannot be compiled under Go 1.23-rc1. Could you please take a look?
> this issue could be closed now~ I think we can wait for #688 to ensure having a full support.
Dup issue: #151
感觉不需要解题思路部分,只把文章中的代码移出到 `code` 文件夹,新增一个测试数据,并且提供一个题目链接就足够了
@Marcythm PTAL, thx!
你的实际修改 commit 在 `patch-1` 分支,但是你的增加 author 的 commit 在 `patch-2` 分支。请将这两个 commit 合并到 `patch-2` 分支上
请重新根据 [格式手册](https://oi-wiki.org/intro/format/) 规范内容格式
感谢 Debug,我的理解是一个上游问题?是否应该做一个最小复现反馈给上游
> 有一个小提议,就是例如 Treap, Splay Tree, ST-Tree (a.k.a. Link-Cut Tree) 之类的实现可以用 CRTP (Curiously Recurring Template Pattern url: https://en.cppreference.com/w/cpp/language/crtp.html) 来实现(我也是从其他人那边学的,但是这个方法应该比较通用) 我觉得只在一些特定情况有用,比如一道题里要维护两种不同 value 类型的 Treap,但这不是 Treap 本身的问题。这个内容应该放在 C++ 语言页面中。 > 这样的好处是一般来说只需要同一套完整的代码,然后用的时候就只需要实现特定的函数(对于不同的题目不用去费劲修改内部的函数) 感觉没必要,这个页面讲解的是 Treap,我觉得把...