Skip to content

Commit

Permalink
Reto #31 - php
Browse files Browse the repository at this point in the history
  • Loading branch information
almonteagudor committed Aug 11, 2023
1 parent 99b26a9 commit 9bbc988
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 9bbc988

Please sign in to comment.