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:48 +03:00
committed by GitHub
parent 802c85e8d9
commit b4e998cb32

View File

@@ -39,7 +39,7 @@ namespace search {
namespace median_search2 {
/**
* This function searches for the median of a linked list.
* @param head, The head of the linked list.
* @param head The head of the linked list.
* @returns Median node of the linked list.
*/
ListNode* middleNode(ListNode* head) {