Advertisement
Guest User

Untitled

a guest
Oct 16th, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. void FillMassiveMap(){
  2. int i=0;
  3. for(const auto&q:values){
  4. for(int j=0;j<q.second;j++){
  5. array[i][j] = q.first;
  6. }
  7. i++;
  8. }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement