First bit of the A-level miscellany
[cas-master-teacher-training.git] / programming.html
index 2f965079bb2de400c451e5eb084890a75f8b804d..b77ef4237e815b287a6dc1b8e58d5fe6d41afe91 100644 (file)
@@ -50,8 +50,7 @@
   <body>
     <textarea id="source">
 
-# Programming strategy
-
+# Programming strategy ![Open University logo](oulogo_hor.png)
 ## Moving up a level
 
 Data structures
@@ -64,7 +63,7 @@ Seeing alternatives
 
 layout: true
 
-.indexlink[[Index](index.html)]
+.indexlink[![Open University logo](oulogo_hor.png) [Index](index.html)]
 
 ---
 
@@ -320,13 +319,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 = []