[LeetCode] 856. Score of Parentheses - 문제풀이
Description 아래와 같이 소괄호로 이루어진 문자열이 주어졌을때 점수를 계산하여 반환하는 문제입니다. 괄호안에 있는 괄호가 있을경우 해당 괄호 수에 *2점을 추가점수로 얻을 수 있습니다. Given a balanced parentheses string s, return the score of the string. The score of a balanced parentheses string is based on the following rule: "()" has score 1. AB has score A + B, where A and B are balanced parentheses strings. (A) has score 2 * A, where A is a balanced parentheses st..