We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 939ca4a commit 8ed74c6Copy full SHA for 8ed74c6
dynamic_programming/catalan_numbers.cpp
@@ -9,11 +9,12 @@
9
https://oeis.org/A000108/
10
*/
11
12
-#include <cassert> /// for assert
13
-#include <cstdint> /// for std::uint64_t
14
-#include <cstdlib> /// for std::size_t
15
-#include <numeric> /// for std::transform_reduce
16
-#include <vector> /// for std::vector
+#include <cassert> /// for assert
+#include <cstdint> /// for std::uint64_t
+#include <cstdlib> /// for std::size_t
+#include <functional> /// for std::plus
+#include <numeric> /// for std::transform_reduce
17
+#include <vector> /// for std::vector
18
19
/**
20
* @brief computes and caches Catalan numbers
0 commit comments