The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Project::Euler - Solutions for http://projecteuler.net

VERSION

Version v0.1.5

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:

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

Also, you can follow the development of this module on http://www.github.com

You can look for further information at:

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.