asyncrosaurus

joined 1 year ago
[โ€“] asyncrosaurus 2 points 11 months ago

[LANGUAGE: C#]

Part 1:

var list = new List((await File.ReadAllLinesAsync(@".\Day 2\PuzzleInput.txt")));
int conter = 0;
foreach (var line in list)
{
    string[] split = line.Split(":");
    int game = Int32.Parse( split[0].Split(" ")[1]);
    string[] bagContents = split[1].Split(";");
    var max = new Dictionary() { { "red", 0 }, { "green", 0 }, { "blue", 0 } };
    foreach (var content in bagContents)
    {
        string pattern = @"(\d+) (\w+)";
        MatchCollection matches = Regex.Matches(content, pattern);

        foreach (Match match in matches)
        {
            int number = Int32.Parse(match.Groups[1].Value);
            string color = match.Groups[2].Value;
            max[color] = (max[color] >= number)? max[color] : number;
        }
    }
    conter += (max["red"] <= 12 && max["green"] <= 13 && max["blue"] <= 14) ? game : 0;

}
Console.WriteLine(conter);

Part 2:

var list = new List((await File.ReadAllLinesAsync(@".\Day 2\PuzzleInput.txt")));

int conter = 0;
foreach (var line in list)
{
    string[] split = line.Split(":");
    int game = Int32.Parse(split[0].Split(" ")[1]);
    string[] bagContents = split[1].Split(";");
        var max = new Dictionary();
    foreach (var content in bagContents)
    {
        string pattern = @"(\d+) (\w+)";

        MatchCollection matches = Regex.Matches(content, pattern);

        foreach (Match match in matches)
        {
            int number = Int32.Parse(match.Groups[1].Value);
            string color = match.Groups[2].Value;
            if (!max.ContainsKey(color))
                max[color] = number;
            else if(max[color] < number)
                max[color] = number;
        }
    }
    conter += max.Values.Aggregate(1, (total, value) => total *  value );

}
Console.WriteLine(conter);
[โ€“] asyncrosaurus 3 points 1 year ago (1 children)

Zoomers don't matter. Young people don't vote. Elections are decided by adults, and the average age of high political activity in America is from the 50 And over crowd.

[โ€“] asyncrosaurus 2 points 1 year ago* (last edited 1 year ago)

[Language: C#]

This isn't the most performant or elegant, it's the first one that worked. I have 3 kids and a full time job. If I get through any of these, it'll be first pass through and first try that gets the correct answer.

Part 1 was very easy, just iterated the string checking if the char was a digit. Ditto for the last, by reversing the string. Part 2 was also not super hard, I settled on re-using the iterative approach, checking each string lookup value first (on a substring of the current char), and if the current char isn't the start of a word, then checking if the char was a digit. Getting the last number required reversing the string and the lookup map.

Part 1:

var list = new List((await File.ReadAllLinesAsync(@".\Day 1\PuzzleInput.txt")));

int total = 0;
foreach (var item in list)
{
    //forward
    string digit1 = string.Empty;
    string digit2 = string.Empty;


    foreach (var c in item)
    {
        if ((int)c >= 48 && (int)c <= 57)
        {
            digit1 += c;
        
            break;
        }
    }
    //reverse
    foreach (var c in item.Reverse())
    {
        if ((int)c >= 48 && (int)c <= 57)
        {
            digit2 += c;

            break;
        }

    }
    total += Int32.Parse(digit1 +digit2);
}

Console.WriteLine(total);

Part 2:

var list = new List((await File.ReadAllLinesAsync(@".\Day 1\PuzzleInput.txt")));
var numbers = new Dictionary() {
    {"one" ,   1}
    ,{"two" ,  2}
    ,{"three" , 3}
    ,{"four" , 4}
    ,{"five" , 5}
    ,{"six" , 6}
    ,{"seven" , 7}
    ,{"eight" , 8}
    , {"nine" , 9 }
};
int total = 0;
string digit1 = string.Empty;
string digit2 = string.Empty;
foreach (var item in list)
{
    //forward
    digit1 = getDigit(item, numbers);
    digit2 = getDigit(new string(item.Reverse().ToArray()), numbers.ToDictionary(k => new string(k.Key.Reverse().ToArray()), k => k.Value));
    total += Int32.Parse(digit1 + digit2);
}

Console.WriteLine(total);

string getDigit(string item,                 Dictionary numbers)
{
    int index = 0;
    int digit = 0;
    foreach (var c in item)
    {
        var sub = item.AsSpan(index++);
        foreach(var n in numbers)
        {
            if (sub.StartsWith(n.Key))
            {
                digit = n.Value;
                goto end;
            }
        }

        if ((int)c >= 48 && (int)c <= 57)
        {
            digit = ((int)c) - 48;
            break;
        }
    }
    end:
    return digit.ToString();
}
[โ€“] asyncrosaurus 8 points 1 year ago (1 children)

unpaid work

This is like whining that a journalist doing a crossword puzzle is "unpaid work" because they use words at their day job.

None of these puzzles are remotely like actual work. It's for fun. Can't you just have fun for a couple hours?

[โ€“] asyncrosaurus 16 points 1 year ago (1 children)

CIA is an initialism, not an acronym, since you pronounce each letter individually.

What you sir are suggesting is a complete erasure of initialisms, and I will not stand for it.

[โ€“] asyncrosaurus -3 points 1 year ago (3 children)

Its still sugar, Berries are just carbohydrates and water.

[โ€“] asyncrosaurus 5 points 1 year ago

You can write it in whatever language you want, as long as it's rust.

/s

[โ€“] asyncrosaurus 1 points 1 year ago

When you leave Ontario for Quebec, the road signs become incomprehensible.

[โ€“] asyncrosaurus 7 points 1 year ago (1 children)

That's really only because the U.S. government is set up all stupid to give the religious nut jobs over-representation. The House is capped at 435. It should be way bigger so bigger states with bigger populations had significanrly more represtatives than the tiny ones.

[โ€“] asyncrosaurus 2 points 1 year ago (1 children)

Sounds like a real pain in the ass.

[โ€“] asyncrosaurus 6 points 1 year ago (4 children)

I just assumed everyone here suffered from Acute Gastrointestinal Illness

[โ€“] asyncrosaurus 1 points 1 year ago

Toronto is not nearly as bad as people whinge about it. Take a trip to LA and try to drive 10km in any direction. You'll be praying to be back on the 401 creeping forward slowly.

view more: โ€น prev next โ€บ