This commit is contained in:
Bill Rossi 2024-11-19 20:32:23 -05:00
parent e0fcee5a17
commit 70348ba551
4 changed files with 36 additions and 0 deletions

4
c3/.gitignore vendored Normal file
View File

@ -0,0 +1,4 @@
bin/*
!bin/run
**/problem

24
c3/2015/1/problem.c3 Normal file
View File

@ -0,0 +1,24 @@
import std::io;
fn void main()
{
String! line = io::readline();
if (try line) {
int floor = 0;
foreach (paren : line) {
if (paren == '(') floor++;
if (paren == ')') floor--;
}
io::printfn("Part 1: %d", floor);
floor = 0;
int index = 0;
foreach (paren : line) {
if (paren == '(') floor++;
if (paren == ')') floor--;
index++;
if (floor < 0) break;
}
io::printfn("Part 2: %d", index);
}
}

1
c3/README.md Normal file
View File

@ -0,0 +1 @@
To run this, download the c3 tar and unzip it directly into the bin directory

7
c3/bin/run Executable file
View File

@ -0,0 +1,7 @@
#!/usr/bin/env bash
year=$1
day=$2
../c3/bin/c3c compile -o $year/$day/problem $year/$day/problem.c3 && \
time (cat ../data/$year/$day/input.txt | ./$year/$day/problem)