diff options
Diffstat (limited to 'src/database/sql')
| -rw-r--r-- | src/database/sql/initialize.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/database/sql/initialize.sql b/src/database/sql/initialize.sql index d5fb9e0..1c2a40f 100644 --- a/src/database/sql/initialize.sql +++ b/src/database/sql/initialize.sql @@ -47,7 +47,7 @@ INSERT INTO problem (title, description) VALUES ( INSERT INTO problem (title, description) VALUES ( 'As Big a Number as Possible', - 'This challenge is a bit different from the others. Instead of trying to make as small a program as possible, you are trying to make a program which prints out as big a number as possible. Your source code should be no longer than 512 bytes.' + 'This challenge is a bit different from the others. Instead of trying to make as small a program as possible, you are trying to make a program which prints out as big a number as possible in a fixed amount of code. Your source code should be no longer than 512 bytes and numbers should be printed in base 10. Before you get any funny ideas, keep in mind that your program has to finish running at some point; you can''t just print "9" in an infinite loop.' ); INSERT INTO problem (title, description) VALUES ( |
