NAME
Project::Euler - Solutions for http://projecteuler.net
VERSION
Version 0.1.4
SYNOPSIS
use Project::Euler;
DESCRIPTION
This is the base class which will eventually be responsible for displaying the interface to interact with the solutions implemented so far.
For now, you will have to manually import the problem_solutions and solve them manually.
use Project::Euler::Problem::P001;
my $problem1 = Project::Euler::Problem::P001->new;
$problem1->solve;
print $problem1->status;
While not the most elegant solution, it will have to do for now.
PROBLEMS
These problems are fully implemented so far:
using the base class: Project::Euler::Problem::Base
LIBRARIES
These libraries are used by the problem_solutions:
Project::Euler::Lib::MultipleCheck
EXPORT
# Todo: implement interface functions
FUNCTIONS
# Todo: implement interface functions
AUTHOR
Adam Lesperance, <lespea at cpan.org>
BUGS
Please report any bugs or feature requests to bug-project-euler at rt.cpan.org
, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Project-Euler. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
SUPPORT
You can find documentation for this module with the perldoc command.
perldoc Project::Euler
You can also look for information at:
RT: CPAN's request tracker
AnnoCPAN: Annotated CPAN documentation
CPAN Ratings
Search CPAN
COPYRIGHT & LICENSE
Copyright 2009 Adam Lesperance.
This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published by the Free Software Foundation; or the Artistic License.
See http://dev.perl.org/licenses/ for more information.