Skip to content

Commit 4d6baf4

Browse files
committed
Adding Simple Solution for Problem - 1221 - Split String Balance
1 parent bdeafc3 commit 4d6baf4

File tree

1 file changed

+76
-0
lines changed

1 file changed

+76
-0
lines changed
+76
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
##==================================
2+
## Leetcode
3+
## Student: Vandit Jyotindra Gajjar
4+
## Year: 2020
5+
## Problem: 1221
6+
## Problem Name: Split a String in Balanced Strings
7+
##===================================
8+
#
9+
#Balanced strings are those who have equal quantity of 'L' and 'R' characters.
10+
#
11+
#Given a balanced string s split it in the maximum amount of balanced strings.
12+
#
13+
#Return the maximum amount of splitted balanced strings.
14+
#
15+
#Example 1:
16+
#
17+
#Input: s = "RLRRLLRLRL"
18+
#Output: 4
19+
#Explanation: s can be split into "RL", "RRLL", "RL", "RL", each substring contains same number of 'L' and 'R'.
20+
#
21+
#Example 2:
22+
#
23+
#Input: s = "RLLLLRRRLR"
24+
#Output: 3
25+
#Explanation: s can be split into "RL", "LLLRRR", "LR", each substring contains same number of 'L' and 'R'.
26+
#
27+
#Example 3:
28+
#
29+
#Input: s = "LLLLRRRR"
30+
#Output: 1
31+
#Explanation: s can be split into "LLLLRRRR".
32+
#
33+
#Example 4:
34+
#
35+
#Input: s = "RLRRRLLRLL"
36+
#Output: 2
37+
#Explanation: s can be split into "RL", "RRRLLRLL", since each substring contains an equal number of 'L' and 'R'
38+
39+
class Solution:
40+
def balanceStringSplit(self, string):
41+
counter = 0 #Intialize counter
42+
finalCounter = 0 #Intialize finalCounter which will return the max amount of splitted balanced strings.
43+
for s in string: #Loop through the string for extracting a character.
44+
#print(s)
45+
if s == 'R': #Condition-check: If the character is R.
46+
counter += 1 #We pass the If Condition-check and increase the counter by 1.
47+
elif s == 'L': #Condition-check: Elif the character is L.
48+
counter -= 1 #We pass the Elif Condition-check and decrease the counter by 1.
49+
50+
if counter == 0: #Condition-check: If the counter will be zero.
51+
finalCounter += 1 #We pass the If Condition-check and increase the finalCounter by 1 because now counter is zero that means we have all substring in matching R and L form.
52+
return finalCounter
53+
#
54+
#Example:
55+
#Input string = "LLLLRRRR"
56+
#counter = 0
57+
#finalCounter = 0
58+
#s = 'L'
59+
#If Condition-check failed enter elif so counter = -1
60+
#s = 'L'
61+
#If Condition-check failed enter elif so counter = -1
62+
#s = 'L'
63+
#If Condition-check failed enter elif so counter = -1
64+
#s = 'L'
65+
#If Condition-check failed enter elif so counter = -1
66+
#s = 'R'
67+
#If Condition-check failed enter elif so counter = +1
68+
#s = 'R'
69+
#If Condition-check failed enter elif so counter = +1
70+
#s = 'R'
71+
#If Condition-check failed enter elif so counter = +1
72+
#s = 'R'
73+
#If Condition-check failed enter elif so counter = +1
74+
#Now our finalCounter is -1 -1 -1 -1 +1 +1 +1 +1 = 0, so we increase this finalCounter by +1.
75+
#As we have completed the string, we simply return finalCounter.
76+
#So finalCounter = 1 for this input.

0 commit comments

Comments
 (0)