Files
TheAlgorithms-PHP/Graphs/GraphEdge.php

9 lines
101 B
PHP

<?php
class GraphEdge
{
public string $start;
public string $end;
public int $weight;
}