Small simplification

This commit is contained in:
TiagoRG 2023-01-30 18:34:06 +00:00
parent 0737ce4140
commit 27e35ad2f1
Signed by untrusted user who does not match committer: TiagoRG
GPG Key ID: DFCD48E3F420DB42
1 changed files with 1 additions and 2 deletions

View File

@ -27,8 +27,7 @@ def removeAdjacentDuplicates(s):
def reapeatNumTimes(n): def reapeatNumTimes(n):
lst = [] lst = []
for i in range(1, n+1): for i in range(1, n+1):
for j in range(i): lst += [i] * i
lst.append(i)
return lst return lst