From 0969cc1c4200fc692bd2f5dae217d3998dddf245 Mon Sep 17 00:00:00 2001 From: Dmitry Fedotov Date: Sun, 17 Dec 2023 12:01:36 +0300 Subject: [PATCH] add README.md explaining why two versions --- day5/README.md | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 day5/README.md diff --git a/day5/README.md b/day5/README.md new file mode 100644 index 0000000..51055cb --- /dev/null +++ b/day5/README.md @@ -0,0 +1,3 @@ +I implemented this task both in Python ang Go because brute-force solution was too slow in Python. + +The code in both languages is very similar. But Go version solved the problem in 3 minutes and 24 seconds while Python version worked for as long as 5 hours 49 minutes 30 seconds. Both versions are single threaded. \ No newline at end of file