Skip to content

Instantly share code, notes, and snippets.

@lbvf50mobile
Last active August 8, 2020 15:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lbvf50mobile/4c37fdca161bfced1bc275c6f0abff59 to your computer and use it in GitHub Desktop.
Save lbvf50mobile/4c37fdca161bfced1bc275c6f0abff59 to your computer and use it in GitHub Desktop.
<?php
# https://www.codewars.com/kata/59b2883c5e2308b54d000013 Onion array.
function is_onion_array(array $a): bool {
for($i=0, $j= count($a) - 1; $i < $j; $i+=1, $j-=1) if($a[$i] + $a[$j] > 10) return false;
return true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment