9.扫雷 - 蓝桥云课 (lanqiao.cn) #include<bits/stdc.h>
using namespace std;
#define int long long
const int N1e5100;
int n,m,res0;
struct pt{int x,y,r;
};
typedef pair<int,int> pii;
map <pii,int> a;//炸雷的map,键是x,y,值是r
map <pii,int&…
一、prisma起步
安装:
npm i prisma -g查看初始化帮助信息:
prisma init -h查看初始化帮助信息结果:
Set up a new Prisma projectUsage$ prisma init [options]
Options-h, --help Display this help message
--datasource-provider …