All solutions in Rust
, Go
, TypeScript
and Kotlin
There is a sample run-solns.sh
script that contains
the commands to run all solutions.
To run solutions use this syntax
./run-solns.sh go 01 # run day 01 solution in Go
./run-solns.sh kotlin 02 # run day 02 solution in Go
The first argument can be
go
orgolang
for Gokt
orkotlin
for Kotlintypescript
orts
for TypeScriptrs
orrust
for Rust
The second argument can be a number from 01
to 25
The Kotlin files are run via kscript
Best way is to install via https://sdkman.io
sdk install kotlin
sdk install kscript
The Rust files are run via rust-script
First install Rust (via appropriate package manager for your OS), then install the rust-script crate.
cargo install rust-script
The TypeScript files are run via deno
Install Deno via appropriate package manager for your OS.
The Go files are run via Go's own go run
process which can
run a file like a script.
Just install Go via your package manager and get going.