Skip to content

Instantly share code, notes, and snippets.

@kephas
Created October 21, 2019 16:10
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 kephas/335587c726853c599565d7363b3d697a to your computer and use it in GitHub Desktop.
Save kephas/335587c726853c599565d7363b3d697a to your computer and use it in GitHub Desktop.
<?php
function creer_doublon($max) {
$start = 1;
$nombres = range(1, $max);
array_push($nombres, rand(1, $max));
shuffle($nombres);
return $nombres;
}
print_r(creer_doublon(10));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment