Guest User

Untitled

a guest
Jun 19th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. <?php
  2.  
  3. $input = "80 20 55 30 40 100";
  4. $data = explode(' ', $input);
  5.  
  6. function rank($data){
  7. $result = [];
  8. foreach($data as $score){
  9. $upper = array_filter($data, function($i) use($score) {
  10. return $i > $score;
  11. });
  12. $result[] = count($upper)+1;
  13. }
  14. return $result;
  15. }
  16.  
  17. echo implode(" ", rank($data));
Add Comment
Please, Sign In to add comment