Join Two Arrays by ID — LeetCode 2722 Python Solution

MediumJavaScript
Problem
#2722
Reading time
2 min

The problem

Given two arrays arr1 and arr2, return a new array joinedArray. All the objects in each of the two inputs arrays will contain an id field that has an integer value.

Example

Input
arr1 = [
Output
[
Explanation
There are no duplicate ids so arr1 is simply concatenated with arr2.

Complexity

MeasureComplexity
TimeO(n)
SpaceO(1) to O(n) auxiliary

Related problems

Frequently asked questions

How hard is LeetCode 2722. Join Two Arrays by ID?
LeetCode 2722. Join Two Arrays by ID is rated Medium on LeetCode.
What topics does LeetCode 2722. Join Two Arrays by ID cover?
LeetCode 2722. Join Two Arrays by ID is tagged JavaScript on LeetCode.

Stuck on problems like this in a live interview?

Stealth Interview is a desktop app for macOS and Windows. It reads the problem off your screen and returns a working solution with a step-by-step explanation and its time and space complexity — invisible to screen sharing.

Get Stealth Interview