diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..a478c1f --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,5 @@ +{ + "files.associations": { + "string_view": "cpp" + } +} \ No newline at end of file diff --git a/README.md b/README.md index 7a9d649..e10042a 100644 --- a/README.md +++ b/README.md @@ -80,7 +80,7 @@ PS:BONUS 部分对代码性能也有要求,需要通过对应的测试数据 如果你写了 BONUS 的除法并且通过了对应的测试点,那么你将不需要实现二分加速试商除法。 - +对于 A 班同学,需要特别注意的是,你的 int2048 将会在之后的大作业 python 解释器中被使用。请务必保证你的代码有足够的健壮性,能够应对各种极端情况。 ### 截止时间 diff --git a/int2048.h b/int2048.h index f647f8c..43a0931 100644 --- a/int2048.h +++ b/int2048.h @@ -1,3 +1,4 @@ +#pragma once #ifndef SJTU_BIGINTEGER #define SJTU_BIGINTEGER @@ -83,4 +84,4 @@ public: }; } // namespace sjtu -#endif \ No newline at end of file +#endif