From 802c85e8d9c3faa0ae3a511921afe5fe04dcbbdc Mon Sep 17 00:00:00 2001 From: weiss-ben <90002567+weiss-ben@users.noreply.github.com> Date: Wed, 14 Sep 2022 00:41:27 +0300 Subject: [PATCH] Update search/median_search2.cpp Co-authored-by: David Leal --- search/median_search2.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/search/median_search2.cpp b/search/median_search2.cpp index 994a2c8d9..8492bd2b6 100644 --- a/search/median_search2.cpp +++ b/search/median_search2.cpp @@ -24,8 +24,8 @@ struct ListNode { ListNode(int x, ListNode *next) : val(x), next(next) {} // Constructor with values provided for node->val and node->next }; - #include // for IO operations - #include // for assert in tests + #include /// for IO operations + #include /// for assert /** * @namespace search