Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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: 26 days ago
JSON representation

Problem of unnecessary parenthesis with Functional Programming

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
```