Skip to content
This repository was archived by the owner on Aug 6, 2025. It is now read-only.

Commit dc77520

Browse files
authored
remove exercise numbering
1 parent 406bce1 commit dc77520

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

book/flow/Exercises/01.ipynb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
}
5757
},
5858
"source": [
59-
"## Exercise 2.2.1\n",
59+
"## Exercise\n",
6060
"\n",
6161
"One of the most crucial applications of <code>if</code> statements is filtering the data from errors and checking whether an error is within a certain limit.\n",
6262
"\n",
@@ -166,7 +166,7 @@
166166
}
167167
},
168168
"source": [
169-
"## (Searching) Exercise 2.2.4\n",
169+
"## (Searching) Exercise\n",
170170
"\n",
171171
"Conditional expression is a way how one can compress an <code>if</code> statement to a more compact (and logical) statement. Your task is to rewrite the below <code>if</code> statement by using the <i>'conditional expression'</i> technique."
172172
]
@@ -289,7 +289,7 @@
289289
}
290290
},
291291
"source": [
292-
"## Exercise 2.4.3\n",
292+
"## Exercise\n",
293293
"\n",
294294
"Here you need to write a function that is able to sort any list consisting only of real numbers, in the descending order. For example, the list $[19, 5, 144, 6]$ becomes $[144, 19, 6, 5]$. However there are three possible options to complete correctly the code where the dots `...` are placed.\n",
295295
"\n",
@@ -332,7 +332,7 @@
332332
}
333333
},
334334
"source": [
335-
"## Exercise 2.4.5\n",
335+
"## Exercise\n",
336336
"\n",
337337
"In this exercise you will perform <a href=\"https://en.wikipedia.org/wiki/Downsampling_(signal_processing)\">downsampling</a> of a provided 'regular' 2D list. Downsampling is a procedure where only a subset of the data is sampled (to reduce its size, for example). Below a visual aid of what downsampling of a 2D list is. Instead of using all the data available, your task is to downsample the 2D list to keep only the data of every $a$-th row and every $b$-th column, including the first element $(a_{0,0})$.<br><br>$$A = \\left[\\begin{array}{ccccc}\n",
338338
"a_{0,0} & \\dots & a_{0,b} & \\dots & a_{0,2b} & \\dots & \\dots & a_{0,nb}\t& \\dots\\\\\n",

0 commit comments

Comments
 (0)