-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
12a5189
commit d483e7f
Showing
1 changed file
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
<h2><a href="https://leetcode.com/problems/find-the-prefix-common-array-of-two-arrays/">2657. Find the Prefix Common Array of Two Arrays</a></h2><h3>Medium</h3><hr><p>You are given two <strong>0-indexed </strong>integer<strong> </strong>permutations <code>A</code> and <code>B</code> of length <code>n</code>.</p> | ||
|
||
<p>A <strong>prefix common array</strong> of <code>A</code> and <code>B</code> is an array <code>C</code> such that <code>C[i]</code> is equal to the count of numbers that are present at or before the index <code>i</code> in both <code>A</code> and <code>B</code>.</p> | ||
|
||
<p>Return <em>the <strong>prefix common array</strong> of </em><code>A</code><em> and </em><code>B</code>.</p> | ||
|
||
<p>A sequence of <code>n</code> integers is called a <strong>permutation</strong> if it contains all integers from <code>1</code> to <code>n</code> exactly once.</p> | ||
|
||
<p> </p> | ||
<p><strong class="example">Example 1:</strong></p> | ||
|
||
<pre> | ||
<strong>Input:</strong> A = [1,3,2,4], B = [3,1,2,4] | ||
<strong>Output:</strong> [0,2,3,4] | ||
<strong>Explanation:</strong> At i = 0: no number is common, so C[0] = 0. | ||
At i = 1: 1 and 3 are common in A and B, so C[1] = 2. | ||
At i = 2: 1, 2, and 3 are common in A and B, so C[2] = 3. | ||
At i = 3: 1, 2, 3, and 4 are common in A and B, so C[3] = 4. | ||
</pre> | ||
|
||
<p><strong class="example">Example 2:</strong></p> | ||
|
||
<pre> | ||
<strong>Input:</strong> A = [2,3,1], B = [3,1,2] | ||
<strong>Output:</strong> [0,1,3] | ||
<strong>Explanation:</strong> At i = 0: no number is common, so C[0] = 0. | ||
At i = 1: only 3 is common in A and B, so C[1] = 1. | ||
At i = 2: 1, 2, and 3 are common in A and B, so C[2] = 3. | ||
</pre> | ||
|
||
<p> </p> | ||
<p><strong>Constraints:</strong></p> | ||
|
||
<ul> | ||
<li><code>1 <= A.length == B.length == n <= 50</code></li> | ||
<li><code>1 <= A[i], B[i] <= n</code></li> | ||
<li><code>It is guaranteed that A and B are both a permutation of n integers.</code></li> | ||
</ul> |