Skip to content

Commit

Permalink
Test CI
Browse files Browse the repository at this point in the history
  • Loading branch information
stdbug committed Jan 27, 2025
1 parent 1dba659 commit 2f82805
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions labs/memory_bound/data_packing/solution.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ void solution(std::array<S, N> &arr) {
// 1. shuffle
static std::random_device rd;
static std::mt19937 g(rd());

std::shuffle(arr.begin(), arr.end(), g);

// 2. sort
Expand Down

0 comments on commit 2f82805

Please sign in to comment.