Hello,
I want to randomize 2-D array,
let us say,
rand data [3][3]
such that entire row and column won’t have any repeated value. (Just like Sudoku)
In our case,
1 3 2
2 1 3
3 2 1
But it should be with std::randomize() or any other run time randomization method but not object randomization.