Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
TayaGordeeva authored Dec 29, 2024
1 parent 4244f4d commit 5df62a0
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ std::vector<int> rand_vec(int size, int down = -100, int upp = 100) {
std::random_device rd;
std::mt19937 gen(rd());
std::uniform_int_distribution<> dis(down, upp);

std::vector<int> v(size);
for (auto &number : v) {
number = dis(gen);
Expand Down

0 comments on commit 5df62a0

Please sign in to comment.