From 61a40e1ef90db9d806537b18d54d922d11416303 Mon Sep 17 00:00:00 2001 From: Andrey Golikov Date: Fri, 17 Feb 2023 17:31:24 +0600 Subject: [PATCH] Add markdown notes --- task1.ipynb | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/task1.ipynb b/task1.ipynb index 88abd88..2029885 100644 --- a/task1.ipynb +++ b/task1.ipynb @@ -103,6 +103,14 @@ " return round(min(f1, f2), precision)" ] }, + { + "attachments": {}, + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Исходные данные:" + ] + }, { "cell_type": "code", "execution_count": 9, @@ -114,6 +122,14 @@ "b = 20" ] }, + { + "attachments": {}, + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Метод дихотомии:" + ] + }, { "cell_type": "code", "execution_count": 10, @@ -134,6 +150,14 @@ "dichotomy(a, b, func)" ] }, + { + "attachments": {}, + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Метод фибоначчи:" + ] + }, { "cell_type": "code", "execution_count": 11, @@ -154,6 +178,14 @@ "fibonacci(a, b, func)" ] }, + { + "attachments": {}, + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Метод золотого сечения:" + ] + }, { "cell_type": "code", "execution_count": 12,