From 713953304ef903cde1af128604c37ffbf213ccef Mon Sep 17 00:00:00 2001 From: zsq259 <2530059525@qq.com> Date: Tue, 24 Oct 2023 12:19:00 +0800 Subject: [PATCH] =?UTF-8?q?upd:=E5=8A=A0=E4=BA=86=E4=B8=80=E7=82=B9?= =?UTF-8?q?=E9=A2=9D=E5=A4=96=E7=9A=84=E6=B3=A8=E9=87=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .vscode/settings.json | 5 +++++ README.md | 2 +- int2048.h | 3 ++- 3 files changed, 8 insertions(+), 2 deletions(-) create mode 100644 .vscode/settings.json 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