mirror of
https://bitbucket.org/Mattrixwv/projecteulerjava.git
synced 2025-12-06 17:13:58 -05:00
Update test coverage
This commit is contained in:
@@ -1,11 +1,11 @@
|
||||
//ProjectEulerJava/src/main/java/mattrixwv/ProjectEuler/Problems/Problem7.java
|
||||
//Matthew Ellison
|
||||
// Created: 03-01-19
|
||||
//Modified: 08-20-22
|
||||
//Modified: 06-27-23
|
||||
//What is the 10001th prime number?
|
||||
//Unless otherwise listed all non-standard includes are my own creation and available from https://bibucket.org/Mattrixwv/JavaClasses
|
||||
/*
|
||||
Copyright (C) 2022 Matthew Ellison
|
||||
Copyright (C) 2023 Matthew Ellison
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Lesser General Public License as published by
|
||||
@@ -34,7 +34,7 @@ public class Problem7 extends Problem{
|
||||
//Static variables
|
||||
private static final long NUMBER_OF_PRIMES = 10001; //The number of primes we are trying to get
|
||||
//Instance variables
|
||||
private List<Long> primes;
|
||||
protected List<Long> primes;
|
||||
|
||||
//Functions
|
||||
//Constructor
|
||||
|
||||
Reference in New Issue
Block a user