Given an array of integers nums and an integer target, return indices of the two numbers that add up to target. Exactly one solution exists, may not use the same element twice.
Given a string s, find the length of the longest substring without repeating characters.
Given an array of k linked-lists, each sorted ascending, merge all into one sorted linked-list. Use a min-heap for O(N log k) efficiency.