MJay

1221 본문

Programming/LeetCode

1221

MJSon 2019. 11. 1. 11:32

1221. Split a String in Balanced Strings

Easy

9660 FavoriteShare

Balanced strings are those who have an equal quantity of 'L' and 'R' characters.

Given a balanced string s split it in the maximum amount of balanced strings.

Return the maximum amount of splitted balanced strings.

 

Example 1:

Input: s = "RLRRLLRLRL" Output: 4 Explanation: s can be split into "RL", "RRLL", "RL", "RL", each substring contains same number of 'L' and 'R'.

Example 2:

Input: s = "RLLLLRRRLR" Output: 3 Explanation: s can be split into "RL", "LLLRRR", "LR", each substring contains same number of 'L' and 'R'.

Example 3:

Input: s = "LLLLRRRR" Output: 1 Explanation: s can be split into "LLLLRRRR".

 

cnt = 0 이라는건 개수가 같은거니까 그 떄 집어넣어주면 된다. 

'Programming > LeetCode' 카테고리의 다른 글

841  (0) 2019.11.02
1046  (0) 2019.11.01
1043  (0) 2019.11.01
270  (0) 2019.10.31
931  (0) 2019.10.31