Skip to content

Instantly share code, notes, and snippets.

@lbvf50mobile
Last active August 24, 2020 16:11
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/8576e0ffd635a06ca6c8926498b7a933 to your computer and use it in GitHub Desktop.
Save lbvf50mobile/8576e0ffd635a06ca6c8926498b7a933 to your computer and use it in GitHub Desktop.
Just PHP FUN 084.
<?php
# https://www.codewars.com/kata/5819081d056d4bdd410004f8 Fun with lists: countIf.
function count_if($head, $p) {
$counter = 0;
while($head){
if($p($head->data)) $counter += 1;
$head = $head->next;
}
return $counter;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment