Tweaks
[cas-master-teacher-training.git] / programming.html
index 3323da422795aefe98923a9d09883cc958948fcc..2f965079bb2de400c451e5eb084890a75f8b804d 100644 (file)
@@ -316,6 +316,11 @@ Turn the Euler 11 grid into:
 
 Do both with explicit iteration, then using only comprehensions.
 
+```python
+grid_nums = [int(n) for n in GRID_STRING.split()]
+```
+
+
 ---
 
 # Solutions with explicit loops