Personal tools

Haskell Quiz/Weird Numbers

From HaskellWiki

< Haskell Quiz(Difference between revisions)
Jump to: navigation, search
m (new solution)
Current revision (23:54, 10 August 2008) (edit) (undo)
 
(2 intermediate revisions not shown.)
Line 9: Line 9:
* [[Haskell Quiz/Weird Numbers/Solution Bailey|Justin Bailey]]
* [[Haskell Quiz/Weird Numbers/Solution Bailey|Justin Bailey]]
* [[Haskell Quiz/Weird Numbers/Solution Dolio|Dan Doel]]
* [[Haskell Quiz/Weird Numbers/Solution Dolio|Dan Doel]]
 +
* [[Haskell Quiz/Weird Numbers/Solution Ninju|Alex Watt]]
 +
 +
[[Category:Haskell Quiz|Weird Numbers]]

Current revision

RubyQuiz #57: A weird number is defined as a number, n, such that the sum of all its divisors (excluding n itself) is greater than n, but no subset of its divisors sums up to exactly n.

1 The problem

2 Solutions