360 Sort Transformed Array
1. Question
nums = [-4, -2, 2, 4], a = 1, b = 3, c = 5,
Result: [3, 9, 15, 33]
nums = [-4, -2, 2, 4], a = -1, b = 3, c = 5
Result: [-23, -5, 1, 7]2. Implementation
3. Time & Space Complexity
Previous350 Intersection of Two Arrays IINext395 Longest Substring with At Least K Repeating Characters
Last updated