Array Wrapper — LeetCode 2695 Python Solution
EasyJavaScript
- Problem
- #2695
- Reading time
- 2 min
- Source
- leetcode.com
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
| Measure | Complexity |
|---|---|
| Time | O(n) |
| Space | O(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.