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:

http://www.rubycuts.com/enum-all

Arrays
Fundamentals

Stats:

CreatedNov 5, 2014
PublishedNov 5, 2014
Warriors Trained20627
Total Skips1053
Total Code Submissions40762
Total Times Completed12590
Ruby Completions1260
JavaScript Completions6605
CoffeeScript Completions36
C# Completions865
C Completions680
Prolog Completions50
Java Completions877
Python Completions2736
Total Stars175
% of votes with a positive feedback rating90% of 1831
Total "Very Satisfied" Votes1549
Total "Somewhat Satisfied" Votes216
Total "Not Satisfied" Votes66
Ad
Contributors
  • bellmyer Avatar
  • jhoffner Avatar
  • JoshSchreuder Avatar
  • phatcabbage Avatar
  • ZozoFouchtra Avatar
  • werner33 Avatar
  • asmgf Avatar
  • ParanoidUser Avatar
  • user5036852 Avatar
  • B1ts Avatar
  • Blind4Basics Avatar
  • FArekkusu Avatar
  • user9644768 Avatar
  • hobovsky Avatar
  • albertogcmr Avatar
  • hakr14 Avatar
  • akar-0 Avatar
  • KayleighWasTaken Avatar
Ad