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.

26 lines
396 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 int Part1() {
  10. return -1;
  11. }
  12. static int Part2() {
  13. return -1;
  14. }
  15. [Fact]
  16. public static void Test() {
  17. Assert.Equal(-1, Part1());
  18. Assert.Equal(-1, Part2());
  19. }
  20. }
  21. }