C (lovely)

This commit is contained in:
Bill Rossi 2023-12-19 14:42:49 -05:00
parent 82409ba1df
commit dc3085b216
3 changed files with 33 additions and 0 deletions

1
c/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
problem

26
c/2015/1/problem.c Normal file
View File

@ -0,0 +1,26 @@
#include <stdio.h>
int main() {
FILE* input = fopen("../data/2015/1/input.txt", "r");
char c;
int floor = 0;
while (fread(&c, 1, 1, input) > 0) {
if (c == '(') floor++;
else if(c == ')') floor--;
}
printf("Part 1: %d\n", floor);
floor = 0;
int steps = 0;
rewind(input);
while (fread(&c, 1, 1, input) > 0) {
if (c == '(') floor++;
else if(c == ')') floor--;
steps++;
if (floor < 0) break;
}
printf("Part 2: %d\n", steps);
}

6
c/bin/run Executable file
View File

@ -0,0 +1,6 @@
#!/usr/bin/env bash
year=$1
day=$2
gcc -o $year/$day/problem $year/$day/problem.c && time ./$year/$day/problem