-
Notifications
You must be signed in to change notification settings - Fork 363
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
Implementing data validation #209
Conversation
* remove main() and make n_queens a header file * move functions inside NQueensSolver class
and drop ".test" from tests
and update unit test
* add commands for installing CMake 3.10 * update build command
and add build entry in CMakeLists
* call solve() in the constructor to guarantee that the puzzle has been solved when calling any public method * show_solution -> print_solution
…#200) Importing the `std` namespace can lead to namespace pollution. This commit replaces those namespace directives with more specific ones, such as `using std::cin`.
Refactor greatest common denominator algorithm to use a header file. Add test cases as .cpp file to test. Also fix an error in greatest common denominator function that prevented the accurate calculation of negative arguments. Update README. * Migrate extended Euclidean to header, unit tests Removes old .cpp file for the extended Euclidean algorithm and adds unit tests. Also updates README. * Fix accidental addition of old denominator files
It looks like there may be issues with how you pulled the repo and then merged back in. There are conflicts between those commits which is why you can't merge your work back in. Which files did you actually mean to modify? And did you follow the directions here? |
This issue has been automatically marked as inactive because it has not had recent activity. It will be closed in 15 days if no further activity occurs. Thank you for your contributions. |
Added utility methods that do the following:
This PR closes issue #99