mirror of
https://bitbucket.org/Mattrixwv/projecteulercs.git
synced 2025-12-06 17:23:57 -05:00
Changed namespace for problems
This commit is contained in:
@@ -23,6 +23,8 @@
|
|||||||
|
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
using ProjectEulerCS.Problems;
|
||||||
|
|
||||||
|
|
||||||
namespace ProjectEulerCS{
|
namespace ProjectEulerCS{
|
||||||
public class ProblemSelection{
|
public class ProblemSelection{
|
||||||
|
|||||||
@@ -22,7 +22,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
namespace ProjectEulerCS{
|
namespace ProjectEulerCS.Problems{
|
||||||
public class Problem1 : Problem{
|
public class Problem1 : Problem{
|
||||||
//Variables
|
//Variables
|
||||||
private const int TOP_NUM = 999; //The largest number to tbe checked
|
private const int TOP_NUM = 999; //The largest number to tbe checked
|
||||||
|
|||||||
@@ -26,7 +26,7 @@
|
|||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
|
||||||
namespace ProjectEulerCS{
|
namespace ProjectEulerCS.Problems{
|
||||||
public class Problem2 : Problem{
|
public class Problem2 : Problem{
|
||||||
//Variables
|
//Variables
|
||||||
//Static variables
|
//Static variables
|
||||||
|
|||||||
@@ -25,7 +25,7 @@
|
|||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
|
||||||
namespace ProjectEulerCS{
|
namespace ProjectEulerCS.Problems{
|
||||||
public class Problem3 : Problem{
|
public class Problem3 : Problem{
|
||||||
//Variables
|
//Variables
|
||||||
//Static variables
|
//Static variables
|
||||||
|
|||||||
@@ -26,7 +26,7 @@ using System.Collections.Generic;
|
|||||||
using System.Linq;
|
using System.Linq;
|
||||||
|
|
||||||
|
|
||||||
namespace ProjectEulerCS{
|
namespace ProjectEulerCS.Problems{
|
||||||
public class Problem4 : Problem{
|
public class Problem4 : Problem{
|
||||||
//Variables
|
//Variables
|
||||||
//Static variables
|
//Static variables
|
||||||
|
|||||||
@@ -22,7 +22,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
namespace ProjectEulerCS{
|
namespace ProjectEulerCS.Problems{
|
||||||
public class Problem5 : Problem{
|
public class Problem5 : Problem{
|
||||||
//Variables
|
//Variables
|
||||||
//Instance variables
|
//Instance variables
|
||||||
|
|||||||
Reference in New Issue
Block a user