summaryrefslogtreecommitdiff
path: root/src/database
diff options
context:
space:
mode:
authorDaniel Hader <[email protected]>2026-05-30 10:10:17 -0500
committerDaniel Hader <[email protected]>2026-05-30 10:10:17 -0500
commit929be68e691c1c4015fc6874111b19b9f5d68c02 (patch)
treeffc4ecb9c63d8dc242c33d69a592dc093dcfd122 /src/database
parent772c7844c4ca1de632f64eb9428e8e97eea64ac1 (diff)
registration page, me endpoint, and minor content tweaks
Diffstat (limited to 'src/database')
-rw-r--r--src/database/sql/initialize.sql2
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 (