C sharp
This commit is contained in:
parent
c09f3d0a7d
commit
a5c6971028
1
c#/.gitignore
vendored
Normal file
1
c#/.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
problem.exe
|
30
c#/2015/1/problem.cs
Normal file
30
c#/2015/1/problem.cs
Normal 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
6
c#/bin/run
Executable 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
|
Loading…
Reference in New Issue
Block a user