8 kyu
Enumerable Magic #1 - True for All?
6,605 of 12,590bellmyer
Description:
Task
Create a method all which takes two params:
- a sequence
- a function (function pointer in C)
and returns true if the function in the params returns true for every element in the sequence. Otherwise, it should return false. If the sequence is empty, it should return true, since technically nothing failed the test.
Example
all((1, 2, 3, 4, 5), greater_than_9) -> false
all((1, 2, 3, 4, 5), less_than_9) -> True
Help
Here's a (Ruby) resource if you get stuck:
Arrays
Fundamentals
Similar Kata:
Stats:
Created | Nov 5, 2014 |
Published | Nov 5, 2014 |
Warriors Trained | 20627 |
Total Skips | 1053 |
Total Code Submissions | 40762 |
Total Times Completed | 12590 |
Ruby Completions | 1260 |
JavaScript Completions | 6605 |
CoffeeScript Completions | 36 |
C# Completions | 865 |
C Completions | 680 |
Prolog Completions | 50 |
Java Completions | 877 |
Python Completions | 2736 |
Total Stars | 175 |
% of votes with a positive feedback rating | 90% of 1831 |
Total "Very Satisfied" Votes | 1549 |
Total "Somewhat Satisfied" Votes | 216 |
Total "Not Satisfied" Votes | 66 |