Just solving Leetcode and Hackerrank problems in Scala to improve at functional programming
Make the file called setup executable
chmod +x setupExecute setup
./setup./r name # => scala ./problems/name.scalaimplicit class Pipe[A](val a: A) extends AnyVal {
def |>[B](f: A => B): B = f(a)
}