Update search/median_search2.cpp

Co-authored-by: David Leal <halfpacho@gmail.com>
This commit is contained in:
weiss-ben
2022-09-14 00:41:27 +03:00
committed by GitHub
parent d93fe8fced
commit 802c85e8d9

View File

@@ -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 <iostream> // for IO operations
#include <cassert> // for assert in tests
#include <iostream> /// for IO operations
#include <cassert> /// for assert
/**
* @namespace search