Convert JSON String to Object — LeetCode 2759 Python Solution

HardLeetCode PremiumJavaScript
Problem
#2759
Reading time
2 min

The problem

Given a string str, return parsed JSON parsedStr. You may assume the str is a valid JSON string hence it only includes strings, numbers, arrays, objects, booleans, and null.

Example

Input
str = '{"a":2,"b":[1,2,3]}'
Output
{"a":2,"b":[1,2,3]}
Explanation
Returns the object represented by the JSON string.

Complexity

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

Related problems

Frequently asked questions

How hard is LeetCode 2759. Convert JSON String to Object?
LeetCode 2759. Convert JSON String to Object is rated Hard on LeetCode.
What topics does LeetCode 2759. Convert JSON String to Object cover?
LeetCode 2759. Convert JSON String to Object is tagged JavaScript on LeetCode.
Is LeetCode 2759. Convert JSON String to Object a premium problem?
Yes. LeetCode 2759. Convert JSON String to 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