Array Wrapper — LeetCode 2695 Python Solution

EasyJavaScript
Problem
#2695
Reading time
2 min

The problem

Create a class ArrayWrapper that accepts an array of integers in its constructor. This class should have two features: When two instances of this class are added together with the + operator, the resulting value is the sum of all the elements in both arrays.

Example

Input
nums = [[1,2],[3,4]], operation = "Add"
Output
10
Explanation
const obj1 = new ArrayWrapper([1,2]);

Complexity

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

Related problems

Frequently asked questions

How hard is LeetCode 2695. Array Wrapper?
LeetCode 2695. Array Wrapper is rated Easy on LeetCode.
What topics does LeetCode 2695. Array Wrapper cover?
LeetCode 2695. Array Wrapper 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