fix: Add return 0 in bactracking/magic_sequence.cpp (#1589)

* Update magic_sequence.cpp

* clang-format and clang-tidy fixes for ff127de6

* Update backtracking/magic_sequence.cpp

Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com>
Co-authored-by: Abhinn Mishra <49574460+mishraabhinn@users.noreply.github.com>
Co-authored-by: David Leal <halfpacho@gmail.com>
This commit is contained in:
Jxtopher 2021-09-05 19:37:31 +02:00 committed by GitHub
parent b82e2cd4e7
commit a6bbe050f7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -132,4 +132,5 @@ int main() {
backtracking::magic_sequence::print(item);
}
}
return 0;
}