codingtests/ProjectEuler/004/desc.yml
2012-03-01 14:01:08 +01:00

18 lines
515 B
YAML

title: Find the largest palindrome made from the product of two 3-digit numbers.
url: http://projecteuler.net/problem=4
desc: |
A palindromic number reads the same both ways. The largest palindrome made from the product of two 2-digit numbers is 9009 = 91 99.
Find the largest palindrome made from the product of two 3-digit numbers.
solution: |
See code
solutions:
solve.php:
desc: Basic solution
language: php
solve.rb:
desc: Basic solution in Ruby
language: ruby