You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
347 B

  1. using System;
  2. using static System.Console;
  3. using System.Collections.Generic;
  4. using System.IO;
  5. using System.Linq;
  6. using Xunit;
  7. namespace AdventOfCode {
  8. public class DayXX {
  9. static void Part1() {
  10. }
  11. static void Part2() {
  12. }
  13. [Fact(Skip = "template")]
  14. public static void Test() {
  15. Part1();
  16. Part2();
  17. }
  18. }
  19. }