背景
react17 安装 html-react-parser
npm install html-react-parser运行终端报错信息
ERROR in ./node_modules/html-react-parser/esm/index.mjs 2:0-122
Cant reexport the named export htmlToDOM from non EcmaScript module (only default export is available)原因…
Educational Codeforces Round 165 (Rated for Div. 2)
A. Two Friends
思路:容易发现答案只有2和3两种情况。2的情况就是存在 p [ i ] j p[i]j p[i]j且 p [ j ] i p[j]i p[j]i,枚举一下就好了。
时间复杂度: O ( n 2 ) O(n^2) O(n2)
B…