Skip to content

Commit 0cbbf30

Browse files
doc: add documentation to headers
1 parent c7c9110 commit 0cbbf30

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

math/factorial_memoization.cpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,13 @@
2020
* @author [Vedant Mukhedkar](https://github.com/git5v)
2121
*/
2222

23-
#include <iostream>
23+
#include <iostream> // for std::cout
2424
#include <cassert> // For test cases
25-
#include <array>
25+
#include <array> // For std::array
2626
#include <cstdint> // For uint64_t
2727

2828
/// Array to store computed factorials for memoization
2929
std::array<uint64_t, 1000> memo{0};
30-
#include <iostream> /// for IO operations
3130

3231
/**
3332
* @namespace math

0 commit comments

Comments
 (0)