This file contains hidden or 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
internal class GT | |
{ | |
public static int[,] LoadAdjMatrix(string path) | |
{ | |
if (!File.Exists(path)) | |
{ | |
throw new FileNotFoundException(path); | |
} | |
string[] lines = File.ReadAllLines(path); |