feat: added alternative solution and TLE solution to decode-ways problem, wrote the tutorial file and added some more manual test cases

This commit is contained in:
2025-11-11 11:10:17 -03:00
parent 353fd05093
commit e37b1b1544
200 changed files with 466 additions and 281 deletions

View File

@@ -30,6 +30,9 @@ vector<string> generate_sample_tests() {
vector<string> generate_manual_tests() {
vector<string> tests;
tests.push_back(output_tc("101010101010"));
tests.push_back(output_tc("11111111111111111111"));
tests.push_back(output_tc("111111111111111111111111111111111111111111111"));
tests.push_back(output_tc("111111111111111111111000000000000000000000000"));
tests.push_back(output_tc("123456789"));
return tests;
}