You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## 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
+
classSolution:
40
+
defbalanceStringSplit(self, string):
41
+
counter=0#Intialize counter
42
+
finalCounter=0#Intialize finalCounter which will return the max amount of splitted balanced strings.
43
+
forsinstring: #Loop through the string for extracting a character.
44
+
#print(s)
45
+
ifs=='R': #Condition-check: If the character is R.
46
+
counter+=1#We pass the If Condition-check and increase the counter by 1.
47
+
elifs=='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
+
ifcounter==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
+
returnfinalCounter
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.
0 commit comments