Merged back changes from presentation
[cas-master-teacher-training.git] / programming.html
index 2f965079bb2de400c451e5eb084890a75f8b804d..fb855a26af019ddd096bf26c6b965c082a010c21 100644 (file)
@@ -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 = []