X-Git-Url: https://git.njae.me.uk/?a=blobdiff_plain;f=programming.html;h=fb855a26af019ddd096bf26c6b965c082a010c21;hb=b3934d614b144fccdb085ebae9158f91b475b63d;hp=2f965079bb2de400c451e5eb084890a75f8b804d;hpb=9909c586038d3205f53a61e1ebca4faf9783c54d;p=cas-master-teacher-training.git diff --git a/programming.html b/programming.html index 2f96507..fb855a2 100644 --- a/programming.html +++ b/programming.html @@ -320,13 +320,9 @@ Do both with explicit iteration, then using only comprehensions. grid_nums = [int(n) for n in GRID_STRING.split()] ``` - --- # Solutions with explicit loops -```python -grid_nums = [int(n) for n in GRID_STRING.split()] -``` ```python g1 = []