News
Exercise 0 Correction
Written on 20.10.2021 10:38 by Marius Smytzek
Dear Students,
There was a mistake in exercise 0-3b. The code for this exercise should be:
import random
# import the fuzzing book chapter here
if __name__ == '__main__':
random.seed()
data = '' # call the fuzzer function here to generate data
with open('solution_3b.txt', 'w') as f:
f.write(data)
The new uploaded revision of the exercise fixes this problem.