Added chapters and list of exercises

This commit is contained in:
Rick van Hattem
2022-04-30 00:45:54 +02:00
commit 1c106d776c
37 changed files with 124 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
Chapter 17 - c and cpp extensions
=======================================================================================================================
1. Try to sort a list of numbers using `ctypes`, `CFFI`, and with a native extension. You can use the `qsort` function in `stdlib`.
2. Try to make the `custom_sum` function we created safer by adding proper errors for overflow/underflow issues. Additionally, catch the errors when summing multiple numbers that only overflow or underflow in summation.