Skip to content
Snippets Groups Projects
Commit 92cf04d0 authored by Dolleans Geoffrey's avatar Dolleans Geoffrey
Browse files

Merge branch 'master' of...

Merge branch 'master' of gitlab-student.centralesupelec.fr:2018boujerfay/coding-week-gol-dolleans-boujerfaoui
parents 0367b394 8b49de03
No related branches found
No related tags found
No related merge requests found
......@@ -36,7 +36,7 @@ def create_a_grid():
def update_grid():
"""met la grille a jours """
"""met la grille à jour """
global universe
for x in range(len(universe)):
for y in range (len(universe[0])):
......
......@@ -2,7 +2,7 @@ import argparse as ap
from game_of_life.GoL_simulate import *
parser = ap.ArgumentParser()
parser.add_argument("size", type=tuple, help="diplay a universe of the given size")
parser.add_argument("size", type=tuple, help="display a universe of the given size")
parser.add_argument("type_seed", type=str, help="start universe with a seed of the given type")
parser.add_argument("iterations", type=int)
args = parser.parse_args()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment