856 Score of Parentheses
856. Score of Parentheses
1. Question
Input: "()"
Output: 1Input: "(())"
Output: 2Input: "()()"
Output: 22. Implementation
3. Time & Space Complexity
Last updated