Convert Object to JSON String — LeetCode 2633 Python Solution
MediumLeetCode PremiumJavaScript
- Problem
- #2633
- Reading time
- 2 min
- Source
- leetcode.com
The problem
Given a value, return a valid JSON string of that value. The value can be a string, number, array, object, boolean, or null.
Example
- Input
- object = {"y":1,"x":2}
- Output
- {"y":1,"x":2}
- Explanation
- Return the JSON representation.
Complexity
| Measure | Complexity |
|---|---|
| Time | O(n) |
| Space | O(1) to O(n) auxiliary |
Related problems
Frequently asked questions
- How hard is LeetCode 2633. Convert Object to JSON String?
- LeetCode 2633. Convert Object to JSON String is rated Medium on LeetCode.
- What topics does LeetCode 2633. Convert Object to JSON String cover?
- LeetCode 2633. Convert Object to JSON String is tagged JavaScript on LeetCode.
- Is LeetCode 2633. Convert Object to JSON String a premium problem?
- Yes. LeetCode 2633. Convert Object to JSON String is a LeetCode Premium problem, so the full statement and test cases require a paid LeetCode subscription.