From da2be90384844f84487ef5c4b520f751fece0bfb Mon Sep 17 00:00:00 2001 From: polonez Date: Sun, 21 Jan 2018 15:32:21 +0900 Subject: [PATCH] Fix typo: remove duplicate --- ipynb/TSP.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ipynb/TSP.ipynb b/ipynb/TSP.ipynb index 7e75acb..84af5c5 100644 --- a/ipynb/TSP.ipynb +++ b/ipynb/TSP.ipynb @@ -1459,7 +1459,7 @@ "metadata": {}, "source": [ "Note: Each time we develop a new algorithm, we would like to compare its performance to some standard old algorithms.\n", - "The use of `@functools.lru_cache` here means that we don't need to to re-run the old algorithms on a standard data set each time; we can just cache the old results. \n", + "The use of `@functools.lru_cache` here means that we don't need to re-run the old algorithms on a standard data set each time; we can just cache the old results. \n", "\n", "We can use `benchmark` to see the average call to the absolute value function takes less than a microsecond:" ]