From 2771461cb3e978144e09abe90ae1ac768471ed76 Mon Sep 17 00:00:00 2001 From: Daniel Flanagan Date: Tue, 11 Oct 2022 13:54:45 -0500 Subject: [PATCH 1/2] Add readme --- readme.md | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 readme.md diff --git a/readme.md b/readme.md new file mode 100644 index 0000000..b5ac0b9 --- /dev/null +++ b/readme.md @@ -0,0 +1,25 @@ +# [Protohackers][protohackers] + +My solutions to the programming problems on [Protohackers][protohackers]! + +I'm using Deno as long as I can get away with it, taking full advantage of the +`std` modules available to do as much as possible in a very "streaming" fashion. + +# Dependencies + +[Install Deno][deno#install] + +# Usage + +```bash +deno run -A --unstable N.ts +``` + +## Example + +```bash +deno run -A --unstable 0.ts +``` + +[protohackers]: https://protohackers.com +[deno#install]: https://deno.land/#installation \ No newline at end of file From 350174a155b16fc35c02c2ce10ba5be311e69f66 Mon Sep 17 00:00:00 2001 From: Daniel Flanagan Date: Tue, 11 Oct 2022 14:02:12 -0500 Subject: [PATCH 2/2] Readme --- readme.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/readme.md b/readme.md index b5ac0b9..e42d1f6 100644 --- a/readme.md +++ b/readme.md @@ -2,8 +2,9 @@ My solutions to the programming problems on [Protohackers][protohackers]! -I'm using Deno as long as I can get away with it, taking full advantage of the -`std` modules available to do as much as possible in a very "streaming" fashion. +I'm using Deno as long as I can get away with it, taking full advantage of +the `std` modules available to do as much as possible in a very asynchronous +"streaming" fashion. # Dependencies