一、不支持以#开头的私有字段 规则:arkts-no-private-identifiers 级别:错误 ArkTS不支持使用#符号开头声明的私有字段。改用private关键字。 TypeScript
class C {#foo: number 42
}ArkTS
class C {private foo: number 42
}二、类型、命名空间的命…
A. Array Divisibility 思路:
找出特例,发现输出 1∼𝑛 符合题意。直接输出1~n即可.
代码:
#include<bits/stdc.h>
using namespace std;
typedef long long ll;
#define N 1000005
ll dp[N], w[N], v[N], h[N];
ll dis[1005][1005];
ll a, b, c, n, m, t;…