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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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