Skip to content

Commit f5b1967

Browse files
committed
added folders and READMEs for blank problem sets
1 parent 535ab4a commit f5b1967

File tree

16 files changed

+81
-47
lines changed

16 files changed

+81
-47
lines changed

README.md

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,17 @@ Problem sets are arranged by topic and are linked below. Each problem set lists
77
**The basics**
88
1. [Printing](problem_sets/print)
99
2. [Strings](problem_sets/strings)
10-
3. Math operations
11-
4. Collecting user input
12-
5. Lists
13-
6. Tuples
14-
7. Dictionaries
15-
8. Functions
16-
9. Conditional logic
17-
10. Exception handling and errors
18-
11. File I/O
19-
12. Object-oriented programming (OOP)
10+
3. [Math operations](problem_sets/math)
11+
4. [Collecting user input](problem_sets/user_input)
12+
5. [Lists](problem_sets/lists)
13+
6. [Tuples](problem_sets/tuples)
14+
7. [Dictionaries](problem_sets/dictionaries)
15+
8. [Sets](problem_sets/sets)
16+
9. [Functions](problem_sets/functions)
17+
10. [Conditional logic](problem_sets/logic)
18+
11. [Exception handling and errors](problem_sets/exception_handling)
19+
12. [File I/O](problem_sets/file_io)
20+
13. [Object-oriented programming (OOP)](problem_sets/oop)
2021

2122
**Advanced topics**
2223
1. Decorators
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Dictionaries
2+
3+
These exercises do not need to be completed in order, but they are generally ordered in increasing difficulty. The solutions provided _are not the only possible_ solution. Your's might look different, and that is okay!
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Exception handling
2+
3+
These exercises do not need to be completed in order, but they are generally ordered in increasing difficulty. The solutions provided _are not the only possible_ solution. Your's might look different, and that is okay!

problem_sets/file_io/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# File I/O
2+
3+
These exercises do not need to be completed in order, but they are generally ordered in increasing difficulty. The solutions provided _are not the only possible_ solution. Your's might look different, and that is okay!

problem_sets/functions/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Functions
2+
3+
These exercises do not need to be completed in order, but they are generally ordered in increasing difficulty. The solutions provided _are not the only possible_ solution. Your's might look different, and that is okay!

problem_sets/lists.md

Lines changed: 0 additions & 3 deletions
This file was deleted.

problem_sets/lists/README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Lists
2+
3+
These exercises do not need to be completed in order, but they are generally ordered in increasing difficulty. The solutions provided _are not the only possible_ solution. Your's might look different, and that is okay!
4+
5+
1. Write a Python program to display the first and last colors from the following list (from [w3resource](https://www.w3resource.com/python-exercises/python-basic-exercises.php)).

problem_sets/logic/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Conditional logic
2+
3+
These exercises do not need to be completed in order, but they are generally ordered in increasing difficulty. The solutions provided _are not the only possible_ solution. Your's might look different, and that is okay!

problem_sets/math.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

problem_sets/math/README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Math operations
2+
3+
These exercises do not need to be completed in order, but they are generally ordered in increasing difficulty. The solutions provided _are not the only possible_ solution. Your's might look different, and that is okay!
4+
5+
1. Write a Python program that accepts an integer (n) and computes the value of n+nn+nnn (from [w3resource](https://www.w3resource.com/python-exercises/python-basic-exercises.php)).
6+
7+
2. Write a Python program to get the volume of a sphere with radius 6 (from [w3resource](https://www.w3resource.com/python-exercises/python-basic-exercises.php)).

0 commit comments

Comments
 (0)