为啥用vs啊,推荐vsc
by ppip @ 2022-10-10 14:51:13
编译错误里说
```plain
<bits/stl_algo.h>: In instantiation of 'constexpr void std::sort(_RAIter, _RAIter) [with _RAIter = int]':
main.cpp:12:9: required from here
```
意思是,第 12 行中,`sort` 不能直接传入 `int` 参数,而应该传入指向 `int` 的随机访问迭代器。
by ud2_ @ 2022-10-10 15:35:50
@[ud2_](/user/206953) 懂啦谢谢
by bluetored @ 2022-10-10 21:24:04