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