This commit is contained in:
Zengtudor 2024-08-02 12:47:23 +08:00
parent 39ecc81abf
commit 9d56c434ec
3 changed files with 18 additions and 0 deletions

Binary file not shown.

BIN
day1/PrimSim/main Executable file

Binary file not shown.

18
day1/PrimSim/main.cpp Normal file
View File

@ -0,0 +1,18 @@
#include<bits/stdc++.h>
using namespace std;
string s1,s2,s3,s4,s5,s6;
int main() {
s1 = "BDBBACBCABCACAA";
s2 = "TTDAA";
s3 = "FFAAA";
s4 = "TTTAAA";
s5 = "DCCC";
s6 = "ABCBAA";
string ans = s1 + s2 + s3 + s4 + s5 + s6;
assert(ans.length() == 41);
cout<<ans;
return 0;
}