https://github.com/git-marcopitra/remove-unnecessary-parenthesis
Problem of unnecessary parenthesis with Functional Programming
https://github.com/git-marcopitra/remove-unnecessary-parenthesis
functional-programming testing
Last synced: 9 months ago
JSON representation
Problem of unnecessary parenthesis with Functional Programming
- Host: GitHub
- URL: https://github.com/git-marcopitra/remove-unnecessary-parenthesis
- Owner: git-marcopitra
- Created: 2021-09-01T22:18:33.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2022-12-11T09:14:59.000Z (almost 3 years ago)
- Last Synced: 2024-12-29T05:27:48.763Z (11 months ago)
- Topics: functional-programming, testing
- Language: JavaScript
- Homepage:
- Size: 99.6 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Remover Parêntesis
## Problema
Dadas as strings à esquerda, remova os parêntesis desnecessários de cada uma delas para que se igualem às strings à direita.
## Exemplo
```
(a => a
(a(a)) => (a(a))
(aa)) => (aa)
(((aa)) => ((aa))
aa) => aa
```