Skip to content

Commit 402ed85

Browse files
authored
Update gcd_of_n_numbers.cpp
1 parent a5582f8 commit 402ed85

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

math/gcd_of_n_numbers.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@
1111
*
1212
* @see gcd_iterative_euclidean.cpp, gcd_recursive_euclidean.cpp
1313
*/
14-
#include <algorithm> // for std::abs
15-
#include <array> // for std::array
16-
#include <cassert> // for assert
17-
#include <iostream> // for IO operations
18-
#include <optional> // for std::optional
14+
#include <algorithm> /// for std::abs
15+
#include <array> /// for std::array
16+
#include <cassert> /// for assert
17+
#include <iostream> /// for IO operations
18+
#include <optional> /// for std::optional
1919
/**
2020
* @namespace math
2121
* @brief Maths algorithms

0 commit comments

Comments
 (0)