Check Array Formation Through Concatenation - Problem
You are given an array of distinct integers arr and an array of integer arrays pieces, where the integers in pieces are distinct. Your goal is to form arr by concatenating the arrays in pieces in any order. However, you are not allowed to reorder the integers in each array pieces[i].
Return true if it is possible to form the array arr from pieces. Otherwise, return false.
Input & Output
Example 1 — Basic Case
$
Input:
arr = [85], pieces = [[85]]
›
Output:
true
💡 Note:
Single piece [85] exactly matches the target array [85]
Example 2 — Multiple Pieces
$
Input:
arr = [15,88], pieces = [[88],[15]]
›
Output:
true
💡 Note:
Can rearrange pieces: [15] + [88] = [15,88] matches target
Example 3 — Impossible Case
$
Input:
arr = [49,18,16], pieces = [[16,18,49]]
›
Output:
false
💡 Note:
Piece [16,18,49] cannot be reordered to match [49,18,16]
Constraints
- 1 ≤ pieces.length ≤ arr.length ≤ 100
- sum(pieces[i].length) == arr.length
- 1 ≤ pieces[i].length ≤ arr.length
- 1 ≤ arr[i], pieces[i][j] ≤ 100
- The integers in arr are distinct
- The integers in pieces are distinct
Visualization
Tap to expand
Understanding the Visualization
1
Input
Target array [15,88] and pieces [[88],[15]]
2
Process
Find valid arrangement of pieces
3
Output
Return true if formation is possible
Key Takeaway
🎯 Key Insight: Use the first element of each piece as a unique key for fast lookup and matching
💡
Explanation
AI Ready
💡 Suggestion
Tab
to accept
Esc
to dismiss
// Output will appear here after running code