Skip to content

Commit 0278688

Browse files
committed
fix: remove repeated random header
1 parent 04baa1d commit 0278688

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

games/memory_game.cpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,8 @@
1818
#include <cstdlib> /// for std::srand()
1919
#include <ctime> /// for std::time()
2020
#include <iostream> /// for IO operations
21-
#include <random>
22-
#include <random> /// for std::mt19937
23-
#include <vector> /// for std::vector
21+
#include <random> /// for std::mt19937
22+
#include <vector> /// for std::vector
2423

2524
#ifdef _WIN32
2625
#include <windows.h> /// for sleep

0 commit comments

Comments
 (0)