chore: import upstream snapshot with attribution
build-docs / deploy (push) Has been cancelled
Check Markdown links / markdown-link-check (push) Has been cancelled
Pytest / test (3.11) (push) Has been cancelled
Pytest / test (3.12) (push) Has been cancelled

This commit is contained in:
wehub-resource-sync
2026-07-13 13:25:42 +08:00
commit 4e0f4422d0
388 changed files with 30544 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
#include <string>
#include <iostream>
using namespace std;
int main(){
string solution = "FLAG23456912365453475897834567";
for(int i =0; i <= solution.length();i++){
cout << i << " " << solution[i] << " " << ((int) solution[i]);
solution[i] = char(((solution[i]-(265%999))^0x10));
cout << " " << solution[i] << " " << ((int) solution[i]) << endl;
}
for(int j =0; j <= solution.length();j++){
cout << j << " " << solution[j] << " " << ((int) solution[j]);
solution[j] = char((solution[j] - 20)^0x50);
cout << " " << solution[j] << " " << ((int) solution[j]) << endl;
}
cout << "FLAG:" << solution << endl;
}