Sha256: 5104aedb176b2995972bc8b38a1a17cae7213c9578a1776b0a6635c5130b82dd
Contents?: true
Size: 636 Bytes
Versions: 42
Compression:
Stored size: 636 Bytes
Contents
pub type Palindrome = u64; pub fn get_palindrome_products(min: u64, max: u64) -> Vec<Palindrome> { unimplemented!( "Find all palindromic numbers which are products of numbers in the inclusive range ({}..{})", min, max ) } pub fn min(palindromes: &[Palindrome]) -> Option<Palindrome> { unimplemented!( "Return the palindrome of minimal value from the supplied list: {:?}", palindromes ) } pub fn max(palindromes: &[Palindrome]) -> Option<Palindrome> { unimplemented!( "Return the palindrome of maximal value from the supplied list: {:?}", palindromes ) }
Version data entries
42 entries across 42 versions & 1 rubygems