This file contains 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 static Debug; | |
using static Macros.Utils; | |
class Edge{ | |
public char A, B; | |
public int Cost; | |
public Edge(char a, char b, int cost){ | |
A = a; | |
B = b; |
This file contains 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; | |
using System.Collections.Generic; | |
using System.Diagnostics; | |
using System.Runtime.CompilerServices; | |
public static class Debug { | |
private static readonly string resetColor = "\u001b[0m"; | |
private static readonly string blueColor = "\u001b[34m"; | |
private static readonly string greenColor = "\u001b[32m"; |