Updated descriptions to what they are supposed to be

This commit is contained in:
2020-06-16 22:24:33 -04:00
parent f600938944
commit 4737fe6252
2 changed files with 2 additions and 2 deletions

View File

@@ -30,7 +30,7 @@ static WIDTH: i32 = 20;
static LENGTH: i32 = 20; static LENGTH: i32 = 20;
pub fn getDescription() -> String{ pub fn getDescription() -> String{
"Which starting number, under one million, produces the longest chain using the itterative sequence?".to_string() "How many routes from the top left corner to the bottom right corner are there through a 20x20 grid if you can only move right and down?".to_string()
} }
pub fn solve() -> Answer{ pub fn solve() -> Answer{

View File

@@ -26,7 +26,7 @@ extern crate myClasses;
use crate::Problems::Answer::Answer; use crate::Problems::Answer::Answer;
pub fn getDescription() -> String{ pub fn getDescription() -> String{
"Which starting number, under one million, produces the longest chain using the itterative sequence?".to_string() "What is the sum of the digits of the number 2^1000?".to_string()
} }
pub fn solve() -> Answer{ pub fn solve() -> Answer{