Inversion of Object — LeetCode 2822 Python Solution

EasyLeetCode PremiumJavaScript
Problem
#2822
Reading time
2 min

The problem

Given an object or an array obj, return an inverted object or array invertedObj. The invertedObj should have the keys of obj as values and the values of obj as keys.

Example

Input
obj = {"a": "1", "b": "2", "c": "3", "d": "4"}
Output
invertedObj = {"1": "a", "2": "b", "3": "c", "4": "d"}
Explanation
The keys from obj become the values in invertedObj, and the values from obj become the keys in invertedObj.

Complexity

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

Related problems

Frequently asked questions

How hard is LeetCode 2822. Inversion of Object?
LeetCode 2822. Inversion of Object is rated Easy on LeetCode.
What topics does LeetCode 2822. Inversion of Object cover?
LeetCode 2822. Inversion of Object is tagged JavaScript on LeetCode.
Is LeetCode 2822. Inversion of Object a premium problem?
Yes. LeetCode 2822. Inversion of Object is a LeetCode Premium problem, so the full statement and test cases require a paid LeetCode subscription.

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