We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
题目描述 # 给定一个用字符串表示的整数的嵌套列表,实现一个解析它的语法分析器。 列表中的每个元素只可能是整数或整数嵌套列表 提示:你可以假定这些字符串都是格式良好的: 字符串非空,字符串不包含空格,字符串只包含数字0-9、[、-、,、] 示例 1 # 输入: s = “324” 输出: 324 提示: 你应该返回一个 NestedInteger
https://talkgo.dev/docs/algorithms/algs/009/
Activity