Skip to content

Commit 04b6513

Browse files
committed
chore: rearrange included libraries
1 parent d6b091e commit 04b6513

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dynamic_programming/trapped_rainwater.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
#include <algorithm> /// For std::min and std::max
1212
#include <cassert> /// For assert
1313
#include <cstddef> /// For std::size_t
14-
#include <vector> /// For std::vector
1514
#include <cstdint> /// For integral typedefs
15+
#include <vector> /// For std::vector
1616

1717
/*
1818
* @namespace
@@ -89,7 +89,7 @@ static void test() {
8989
0);
9090

9191
std::vector<uint32_t> test_large_elevation_map_difference = {5, 1, 6, 1,
92-
7, 1, 8};
92+
7, 1, 8};
9393
assert(dynamic_programming::trappedRainwater(
9494
test_large_elevation_map_difference) == 15);
9595
}

0 commit comments

Comments
 (0)