mirror of
https://github.com/igorsimdyanov/php8.git
synced 2025-08-06 11:10:42 +00:00
9 lines
150 B
PHP
9 lines
150 B
PHP
<?php
|
|
class Algorithm
|
|
{
|
|
public static function distance(array $point) : float
|
|
{
|
|
return sqrt($point[0] ** 2 + $point[1] ** 2);
|
|
}
|
|
}
|