From 7ab71f24be5784164a36a670cc58f330ea58e5ac Mon Sep 17 00:00:00 2001 From: Yaniv Hollander Date: Sun, 3 Oct 2021 20:49:24 -0400 Subject: [PATCH] Update probability/windowed_median.cpp Co-authored-by: David Leal --- probability/windowed_median.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/probability/windowed_median.cpp b/probability/windowed_median.cpp index 11632ed64..6ba0a860b 100644 --- a/probability/windowed_median.cpp +++ b/probability/windowed_median.cpp @@ -15,7 +15,7 @@ * whenever values are inserted or erased to/from BST. The root of the tree is the median! Hence, median retrieval is always O(1) * * Time complexity: O(logN). Space complexity: O(N). N - size of window - * @author [Yaniv Hollander] (https://github.com/YanivHollander) + * @author [Yaniv Hollander](https://github.com/YanivHollander) */ #include #include