Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Remove harder test cases for q1-q4
I'm finding that some people didn't test the larger numbers on q1-q4
since it didn't appear in the example until q5. Whatever; we'll give
them points if they considered it for q5.
  • Loading branch information
Brandon committed Mar 4, 2019
1 parent ad7751f commit cc8d7da
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/asgn1/main.cpp
Expand Up @@ -49,9 +49,7 @@ const std::map<NumberToFactor, FactorsContainer> tests = {
{ 29, { 29 } },
{ 49, { 7, 7 }},
{ 625, { 5, 5, 5, 5 } },
{ 324324, { 2, 2, 3, 3, 3, 3, 7, 11, 13 } },
{ 9876543210, { 2, 3, 3, 5, 17, 17, 379721 } },
{ 1234567890987654321, { 3, 3, 7, 19, 928163, 1111211111 } }
{ 324324, { 2, 2, 3, 3, 3, 3, 7, 11, 13 } }
};

TEST_CASE("Method 1: Print the factors directly") {
Expand Down

0 comments on commit cc8d7da

Please sign in to comment.