From 14db0c5ff0cf451d7432eb2c8622ea315084b9a1 Mon Sep 17 00:00:00 2001 From: Bill Rossi Date: Mon, 18 Dec 2023 09:36:55 -0500 Subject: [PATCH] Basic (yuck) --- basic/2015/1/problem.bas | 22 ++++++++++++++++++++++ basic/bin/run | 6 ++++++ 2 files changed, 28 insertions(+) create mode 100644 basic/2015/1/problem.bas create mode 100755 basic/bin/run diff --git a/basic/2015/1/problem.bas b/basic/2015/1/problem.bas new file mode 100644 index 0000000..59bb7b7 --- /dev/null +++ b/basic/2015/1/problem.bas @@ -0,0 +1,22 @@ +OPEN 1, "../data/2015/1/input.txt", "r" +LINE INPUT #1 file$ + +f=0 +for a=1 to len(file$) + c$ = mid$(file$, a, 1) + if (c$ == "(") f = f + 1 + if (c$ == ")") f = f - 1 +next a + +print "Part 1: ", f + +f = 0 +steps = 0 +for a=1 to len(file$) + c$ = mid$(file$, a, 1) + if (c$ == "(") f = f + 1 + if (c$ == ")") f = f - 1 + steps = steps + 1 + if (f < 0) break +next a +print "Part 2: ", steps \ No newline at end of file diff --git a/basic/bin/run b/basic/bin/run new file mode 100755 index 0000000..7b842a3 --- /dev/null +++ b/basic/bin/run @@ -0,0 +1,6 @@ +#!/usr/bin/env bash + +year=$1 +day=$2 + +time yabasic ./$year/$day/problem.bas