forked from TheAlgorithms/Python
- Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabbreviation.py
39 lines (32 loc) · 935 Bytes
/
abbreviation.py
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
28
29
30
31
32
33
34
35
36
37
38
39
"""
https://www.hackerrank.com/challenges/abbr/problem
You can perform the following operation on some string, :
1. Capitalize zero or more of 's lowercase letters at some index i
(i.e., make them uppercase).
2. Delete all of the remaining lowercase letters in .
Example:
a=daBcd and b="ABC"
daBcd -> capitalize a and c(dABCd) -> remove d (ABC)
"""
defabbr(a: str, b: str) ->bool:
"""
>>> abbr("daBcd", "ABC")
True
>>> abbr("dBcd", "ABC")
False
"""
n=len(a)
m=len(b)
dp= [[Falsefor_inrange(m+1)] for_inrange(n+1)]
dp[0][0] =True
foriinrange(n):
forjinrange(m+1):
ifdp[i][j]:
ifj<manda[i].upper() ==b[j]:
dp[i+1][j+1] =True
ifa[i].islower():
dp[i+1][j] =True
returndp[n][m]
if__name__=="__main__":
importdoctest
doctest.testmod()