Skip to content

Instantly share code, notes, and snippets.

@GuilhermeHideki
Created August 14, 2016 01:11
Show Gist options
  • Select an option

  • Save GuilhermeHideki/6edf1039bc164c269ba0f4949cccfcba to your computer and use it in GitHub Desktop.

Select an option

Save GuilhermeHideki/6edf1039bc164c269ba0f4949cccfcba to your computer and use it in GitHub Desktop.
;)
<?php
function nota_final($notas, $dificuldade)
{
sort($notas);
array_pop($notas);
array_shift($notas);
return array_sum($notas) * $dificuldade;
}
def nota_final(notas, dificuldade):
return sum(sorted(notas)[1:-1]) * dificuldade
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment