Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


Excerpt

Merge k sorted linked lists and return it as one sorted list. Analyze and describe its complexity.


Example:

Code Block
Input:
[
	1->4->5,
	1->3->4,
	2->6
]
Output: 1->1->2->3->4->4->5->6

...