Skip to content

Commit 17f398f

Browse files
Update dynamic_programming/Unbounded_0_1_Knapsack.cpp
Co-authored-by: realstealthninja <[email protected]>
1 parent 4d4c49c commit 17f398f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

dynamic_programming/Unbounded_0_1_Knapsack.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@
2424
* @see dynamic_programming/0_1_knapsack.cpp
2525
*/
2626

27-
#include <iostream> ///< Standard input-output stream
28-
#include <vector> ///< Standard library for using dynamic arrays (vectors)
29-
#include <cassert> ///< For using assert function to validate test cases
30-
#include <cstdint> ///< For fixed-width integer types like std::uint16_t
27+
#include <iostream> // Standard input-output stream
28+
#include <vector> // Standard library for using dynamic arrays (vectors)
29+
#include <cassert> // For using assert function to validate test cases
30+
#include <cstdint> // For fixed-width integer types like std::uint16_t
3131

3232
/**
3333
* @namespace dynamic_programming

0 commit comments

Comments
 (0)