Skip to content

Instantly share code, notes, and snippets.

View Isa-josep's full-sized avatar

Isauro Jose Paredes Heredia Isa-josep

View GitHub Profile
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;
@Isa-josep
Isa-josep / debug.cs
Last active July 2, 2024 02:19
Libreria debug
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";