Coding
Serialize and Deserialize N-ary Tree
Serialize and deserialize an N-ary tree.
Input: root = [1]
Output: 1
Explanation: The tree only contains a root node, resulting in a minimal serialized string representation that can be accurately rebuilt.
Was asked at