Skip to content

Instantly share code, notes, and snippets.

@katsube
Last active October 15, 2022 17:57
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 katsube/26bea64cb3e932be48cd4f42c6ed5afd to your computer and use it in GitHub Desktop.
Save katsube/26bea64cb3e932be48cd4f42c6ed5afd to your computer and use it in GitHub Desktop.
<?php
$min = getMin([18, 15, 30, 17, 25]);
echo $min; // 15と表示される
/**
* 配列から最小値を返却する
*/
function getMin($items){
// ★ここを回答する
return($min);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment