Skip to content

Commit ebbe05a

Browse files
readme update + part5 added
1 parent 5e11955 commit ebbe05a

File tree

3 files changed

+48
-8
lines changed

3 files changed

+48
-8
lines changed

README.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,10 @@
2525
3. [Lists](https://github.com/antoniolopez7217/Python_Programming_MOOC/tree/main/part4/3.%20Lists)
2626
4. [Definite iteration](https://github.com/antoniolopez7217/Python_Programming_MOOC/tree/main/part4/4.%20Definite%20iteration)
2727
5. [Print statement formatting](https://github.com/antoniolopez7217/Python_Programming_MOOC/tree/main/part4/5.%20Print%20statement%20formatting)
28-
6. [More strings and lists]()
28+
6. [More strings and lists](https://github.com/antoniolopez7217/Python_Programming_MOOC/tree/main/part4/6.%20More%20strings%20and%20lists)
29+
30+
### [Part 5]()
31+
1. [More lists]()
32+
2. [References]()
33+
3. [Dictionary]()
34+
4. [Tuple]()

part4/README.md

+6-7
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,11 @@
3838
### Print statement formatting
3939
1. [Integers to strings](https://github.com/antoniolopez7217/Python_Programming_MOOC/blob/main/part4/5.%20Print%20statement%20formatting/integers_to_strings.py)
4040
### More strings and lists
41-
1. [Everything reversed]()
42-
2. [Most common character]()
43-
3. [No vowels allowed]()
44-
4. [No shouting allowed]()
45-
5. [Neighbours in a list]()
46-
6. [Grade statistics]()
47-
7. [Quiz: Feedback, part 4]()
41+
1. [Everything reversed](https://github.com/antoniolopez7217/Python_Programming_MOOC/blob/main/part4/6.%20More%20strings%20and%20lists/everything_reversed.py)
42+
2. [Most common character](https://github.com/antoniolopez7217/Python_Programming_MOOC/blob/main/part4/6.%20More%20strings%20and%20lists/most_common_character.py)
43+
3. [No vowels allowed](https://github.com/antoniolopez7217/Python_Programming_MOOC/blob/main/part4/6.%20More%20strings%20and%20lists/no_vowels_allowed.py)
44+
4. [No shouting allowed](https://github.com/antoniolopez7217/Python_Programming_MOOC/blob/main/part4/6.%20More%20strings%20and%20lists/no_shouting_allowed.py)
45+
5. [Neighbours in a list](https://github.com/antoniolopez7217/Python_Programming_MOOC/blob/main/part4/6.%20More%20strings%20and%20lists/neighbours_in_list.py)
46+
6. [Grade statistics](https://github.com/antoniolopez7217/Python_Programming_MOOC/blob/main/part4/6.%20More%20strings%20and%20lists/grade_statistics.py)
4847

4948
*All subjects are included as comments within the file of each exercise.*

part5/README.md

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# Part 5
2+
## Programming exercises
3+
### More lists
4+
1. The longest string
5+
2. Number of matching elements
6+
3. Go
7+
4. Sudoku: check row
8+
5. Sudoku: check column
9+
6. Sudoku: check block
10+
7. Sudoku: check grid
11+
### References
12+
1. Items multiplied by two
13+
2. Remove the smallest
14+
3. Sudoku: print out the grid and add a number
15+
4. Sudoku: add number to a copy of the grid
16+
5. Tic-Tac-Toe
17+
6. Transpose a matrix
18+
### Dictionary
19+
1. Times ten
20+
2. Factorials
21+
3. Histogram
22+
4. Phone book, version 1
23+
5. Phone book, version 2
24+
6. Invert a dictionary
25+
7. Numbers spelled out
26+
8. Movie database
27+
9. Find movies
28+
### Tuple
29+
1. Create a tuple
30+
2. The oldest person
31+
3. Older people
32+
4. Student database
33+
5. A square of letters
34+
35+
*All subjects are included as comments within the file of each exercise.*

0 commit comments

Comments
 (0)