Skip to content

Instantly share code, notes, and snippets.

View hoadm-net's full-sized avatar

Hòa Đinh hoadm-net

View GitHub Profile
@hoadm-net
hoadm-net / GT.cs
Created February 27, 2023 00:00
Graph Theory - Helpers
internal class GT
{
public static int[,] LoadAdjMatrix(string path)
{
if (!File.Exists(path))
{
throw new FileNotFoundException(path);
}
string[] lines = File.ReadAllLines(path);