From 00e069f175e0bbd3b39923da1f3ef93b2212be27 Mon Sep 17 00:00:00 2001 From: Igor Chubin Date: Thu, 19 Jul 2018 00:10:22 +0200 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ce6afb8..67d8f83 100644 --- a/README.md +++ b/README.md @@ -356,7 +356,7 @@ You: What do you mean? | pivot = array[0] | for x in array: She: I mean, | if x < pivot: less.append(x) She: do you really need all these ifs and fors? | if x == pivot: equal.append(x) -She: Could you maybe just use filter instead? | if x > pivot: greater.append(x) +She: Could you maybe just use filter instead? | if x > pivot: greater.append(x) | return sort(less)+equal+sort(greater) You: quicksort with filter? | else: | return array