This commit is contained in:
Bill Rossi 2023-12-25 05:13:37 -05:00
parent c09f3d0a7d
commit a5c6971028
3 changed files with 37 additions and 0 deletions

1
c#/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
problem.exe

30
c#/2015/1/problem.cs Normal file
View File

@ -0,0 +1,30 @@
using System;
using System.IO;
class Hello {
static void Main(string[] args) {
using(StreamReader file = new StreamReader("../data/2015/1/input.txt")) {
Int32 c;
int floor = 0;
do {
c = file.Read();
if ((char)c == '(') floor++;
else if((char)c == ')') floor--;
} while (c != -1);
Console.WriteLine("Part 1: " + floor);
}
using(StreamReader file = new StreamReader("../data/2015/1/input.txt")) {
Int32 c;
int steps = 0;
int floor = 0;
do {
c = file.Read();
if ((char)c == '(') floor++;
else if((char)c == ')') floor--;
steps++;
if (floor < 0) break;
} while (c != -1);
Console.WriteLine("Part 2: " + steps);
}
}
}

6
c#/bin/run Executable file
View File

@ -0,0 +1,6 @@
#!/usr/bin/env bash
year=$1
day=$2
mcs -out:$year/$day/problem.exe $year/$day/problem.cs && time mono $year/$day/problem.exe