FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
leetcode-algorithms/python/string_compression.py at master · anishLearnsToCode/leetcode-algorithms · GitHub
anishLearnsToCode
/
leetcode-algorithms
Public
Notifications
You must be signed in to change notification settings
Fork
17
Star
98
Code
Issues
0
Pull requests
0
Discussions
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
leetcode-algorithms
/
python
/
string_compression.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
27 lines (24 loc) · 974 Bytes
Breadcrumbs
leetcode-algorithms
/
python
/
string_compression.py
Copy path
File metadata and controls
27 lines (24 loc) · 974 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
from
typing
import
List
from
collections
import
deque
class
Solution
:
def
compress
(
self
,
chars
:
List
[
str
])
->
int
:
compressed_strings
=
deque
()
current_char
,
count
,
length
=
chars
[
0
],
0
,
0
for
character
in
chars
:
if
character
==
current_char
:
count
+=
1
else
:
compressed_strings
.
append
((
current_char
,
str
(
count
)))
length
+=
1
+
(
len
(
str
(
count
))
if
count
>
1
else
0
)
current_char
=
character
count
=
1
compressed_strings
.
append
((
current_char
,
str
(
count
)))
length
+=
1
+
(
len
(
str
(
count
))
if
count
>
1
else
0
)
i
=
0
for
compressed_string
in
compressed_strings
:
character
,
count
=
compressed_string
chars
[
i
]
=
character
if
int
(
count
)
>
1
:
chars
[
i
+
1
:
i
+
1
+
len
(
count
)]
=
count
i
+=
1
+
(
len
(
count
)
if
int
(
count
)
>
1
else
0
)
return
length
Back
|
FazBrowse Home
|
New Git URL