This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Code submission for coding challenge "Prove Your Factorial Fluency" | |
| // http://news.dice.com/2013/10/02/coding-challenge-046/ | |
| // | |
| // Archived at https://web.archive.org/web/20140204075900/http://news.dice.com/2013/10/02/coding-challenge-046/ | |
| // | |
| // Start with the number 987654321 - Assume the count is from that number to the lowest possible permutation | |
| // value of 123456789, and that all values are sorted from maximum to minimum. Find the nth value, in this | |
| // case, the 100,000th value. | |
| // | |
| // Author: Richard R. Vasquez, II |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Nuke Medium | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.1 | |
| // @description Just avoid temptation and don't feed medium.com links | |
| // @author Richard Vasquez | |
| // @match https://devurls.com/ | |
| // @grant none | |
| // ==/UserScript== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Collections.Generic; | |
| using System.Diagnostics; | |
| using System.Linq; | |
| using AdventOfCode.Library; | |
| namespace AdventOfCode | |
| { | |
| // Day 01 | |
| internal static class Program |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Collections.Generic; | |
| using System.Diagnostics; | |
| using System.Linq; | |
| using AdventOfCode.Library; | |
| namespace AdventOfCode | |
| { | |
| internal static class Program | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Collections.Generic; | |
| using System.Diagnostics; | |
| using System.Linq; | |
| using AdventOfCode.Library; | |
| namespace AdventOfCode | |
| { | |
| internal static class Program | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Collections.Generic; | |
| using System.Diagnostics; | |
| using System.Linq; | |
| using AdventOfCode.Library; | |
| namespace AdventOfCode | |
| { | |
| // Day 04 | |
| // THIS IS JUNK! IT WORKS BUT IT IS JUNK! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using AdventOfCode.Library; | |
| namespace AdventOfCode | |
| { | |
| // Day 05 - Massive cleanup | |
| internal static class Program | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Collections.Generic; | |
| using System.Diagnostics; | |
| using System.Linq; | |
| namespace AdventOfCode | |
| { | |
| [DebuggerDisplay("People: {People} - Distinct: {DistinctQuestions} - AllMatch: {AllMatchedQuestions}")] | |
| public class CustomsForm | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System.Collections.Generic; | |
| using System.Diagnostics; | |
| using System.Linq; | |
| namespace AdventOfCode | |
| { | |
| [DebuggerDisplay("Name: {Name} Parents: {Parents}")] | |
| public class Bag | |
| { | |
| public readonly string Name; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System.Collections.Generic; | |
| using System.Linq; | |
| using AdventOfCode.Library; | |
| using AdventOfCode.Library.Interpreter; | |
| namespace AdventOfCode | |
| { | |
| // Day 8 | |
| internal static class Program | |
| { |
NewerOlder