package
0.0.0-20241020204346-852d83918761
Repository: https://github.com/plutov/practice-go.git
Documentation: pkg.go.dev

# README

Reverse Parentheses

Complete the function that reverses characters in (possibly nested) parentheses in the input string. Input strings will always be well-formed with matching ()s.

Examples

(bar)             => rab
foo(bar)baz       => foorabbaz
foo(bar(baz))blim => foobazrabblim

Run tests with benchmarks

go test -bench .

# Functions

No description provided by the author