Skip to content

Commit

Permalink
detalle en 4
Browse files Browse the repository at this point in the history
  • Loading branch information
fernargdev committed Dec 13, 2023
1 parent b2dcc1a commit 1f363a5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion retos/reto-4.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ function decode(message: string) {
const revert = clean.split('').reverse().join('')
const result = message.replace(match[0], revert)

return decode(result)
const recursividad = decode(result)

return recursividad
}

console.log(decode('sa(u(cla)atn)s'))
Empty file added retos/reto-5.js
Empty file.

0 comments on commit 1f363a5

Please sign in to comment.