Skip to content

Commit 79e0ba9

Browse files
Update math/factorial_memoization.cpp
Co-authored-by: realstealthninja <[email protected]>
1 parent 5873ce9 commit 79e0ba9

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

math/factorial_memoization.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121

2222
#include <iostream>
2323
#include <cassert> // For test cases
24+
#include <cstdint>
2425
#include <array>
2526
/// Array to store computed factorials for memoization
2627
std::array<__uint128_t, 1000> memo{0};

0 commit comments

Comments
 (0)