-
Notifications
You must be signed in to change notification settings - Fork 0
Serj1c/100-leetcode-easy
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
def license_key_formatting(s: str, k: int) -> str:
s = s.replace('-')
s.upper()
ans = ''
for i in range(len(s)-1, -1, -1):
if not len(ans) % (k+1):
ans += '-'
ans += s[i]
return ans[::-1][:-1]About
No description, website, or topics provided.
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published