Guest User

Untitled

a guest
Apr 26th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. GameOfLife::GameOfLife(int length, int width){
  2. d = length;
  3. w = width;
  4. a.resize(d);
  5. for (int i = 0; i < w; i++) {
  6. a[i].resize(w,false);
  7. }
  8. }
Add Comment
Please, Sign In to add comment