-
Notifications
You must be signed in to change notification settings - Fork 11
Fix #11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Fix #11
Conversation
| #include "solution.h" | ||
| #include <gtest/gtest.h> | ||
| #include <string> | ||
| #include <random> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
header is unused in this file. Only solution uses it
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ahh it will be included by solution.h so we dont need to import explicitly
and indeed it is used here right?
| std::random_device rd; |
| } | ||
| ... | ||
| auto randomized_add = randomize(1); | ||
| auto randomized_add = randomize(add,3); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
here i added the function which needs to be randomised and 3 for example
fix header definition not imported for random
fix readme definition