0954. Array of Doubled Pairs
https://leetcode.com/problems/array-of-doubled-pairs
Description
Given an integer array of even length arr
, return true
if it is possible to reorder arr
such that arr[2 * i + 1] = 2 * arr[2 * i]
for every 0 <= i < len(arr) / 2
, or false
otherwise.
Example 1:
Example 2:
Example 3:
Example 4:
Constraints:
2 <= arr.length <= 3 * 104
arr.length
is even.-105 <= arr[i] <= 105
ac
Last updated