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.

27 lines
434 B

  1. using System;
  2. using static System.Console;
  3. using System.Collections.Generic;
  4. using System.IO;
  5. using System.Linq;
  6. using System.Text.RegularExpressions;
  7. using Xunit;
  8. namespace AdventOfCode {
  9. public class DayXX {
  10. static int Part1() {
  11. return -1;
  12. }
  13. static int Part2() {
  14. return -1;
  15. }
  16. [Fact]
  17. public static void Test() {
  18. Assert.Equal(-1, Part1());
  19. Assert.Equal(-1, Part2());
  20. }
  21. }
  22. }