Few code standards. Remove composer vendor folder

This commit is contained in:
2025-04-04 12:26:47 +00:00
parent ed83a3afc3
commit 4dd1683e1a
24 changed files with 69 additions and 1152 deletions

View File

@ -6,6 +6,9 @@ $sum = (int)$argv[1];
$input_numbers = array_slice($argv, 2);
$operation = ['+','-','*','/'];
if(sizeof($input_numbers) < 2)
die();
$best_diff = $sum;
while($best_diff != 0) {
shuffle($input_numbers);