Skip to content

Commit

Permalink
Reto mouredev#11 - Python
Browse files Browse the repository at this point in the history
  • Loading branch information
JoseAntonioRuizGarcia committed Dec 8, 2023
1 parent 2b7c7ce commit 6c46b6e
Showing 1 changed file with 27 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
URL = 'https://retosdeprogramacion.com?year=2023&challenge=0'

def extractParams(url: str) -> list:
is_param = False
element = []
params = []

for ch in url:
if ch == '=':
is_param = True
continue

if ch == '&':
params.append(''.join(element))
element = []
is_param = False

if is_param:
element.append(ch)

params.append(''.join(element))
print(params)

return params

if __name__ == '__main__':
params = extractParams(url=URL)

0 comments on commit 6c46b6e

Please sign in to comment.