This repository is a java implement for solving the matthew.problem in Project Euler.
I put some commonly used function in this file:
public static boolean isPrime(Long number) : Whether this number is prime or not
Call the function matthew.Problem.solve(), then print this result as well as the time expended.
The interface of the solution. When you solve a matthew.problem, you should implement this interface.