mirror of
https://github.com/TheAlgorithms/PHP.git
synced 2025-07-08 02:32:29 +02:00
9 lines
101 B
PHP
9 lines
101 B
PHP
<?php
|
|
|
|
class GraphEdge
|
|
{
|
|
public string $start;
|
|
public string $end;
|
|
public int $weight;
|
|
}
|