Convert JSON String to Object — LeetCode 2759 Python Solution
HardLeetCode PremiumJavaScript
- Problem
- #2759
- Reading time
- 2 min
- Source
- leetcode.com
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
| Measure | Complexity |
|---|---|
| Time | O(n) |
| Space | O(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.