Skip to content

Commit

Permalink
Merge pull request #4601 from almonteagudor/Reto#31-php
Browse files Browse the repository at this point in the history
Reto #31 - php
  • Loading branch information
Roswell468 authored Aug 12, 2023
2 parents d5fa59e + 9bbc988 commit 3b674de
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions Retos/Reto #31 - EL ÁBACO [Fácil]/php/almonteagudor.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<?php

function abacoToNumber(array $abaco): int
{
$number = "";

foreach ($abaco as $unit) {
$number .= strpos($unit, "---");
}

return intval($number);
}

$abaco = isset($argv[1]) ? explode(',', $argv[1]) : ["O---OOOOOOOO", "OOO---OOOOOO", "---OOOOOOOOO", "OO---OOOOOOO", "OOOOOOO---OO", "OOOOOOOOO---", "---OOOOOOOOO"];

echo "El número es " . abacoToNumber($abaco) . "\n";

0 comments on commit 3b674de

Please sign in to comment.