Game Is Hard Level 205 Breakdown
What You See
The screen shows the prompt “day of the month, day of the week” and a numeric entry field. There are no shapes, clocks, or calendars visible — just the instruction and the input.
The two-part phrasing is the key: it’s asking for two numbers concatenated. The “day of the month” is today’s date, and the “day of the week” is the weekday’s ordinal (Monday = 1).
Why You're Stuck
I tried entering just the day of the month, and it didn’t work. Then I tried spelling the weekday, or entering the calendar date in other formats — mm/dd, dd — and none of it landed. The two-part format wasn’t obvious.
The trick is concatenation and the Monday=1 convention. The sixth day of the month, on a Saturday, is 7 (day of month) + 6 (Saturday) = 76. Once I saw it as two numbers back-to-back, the answer was just today’s values.
The Answer
Enter two numbers concatenated: today’s day of the month, then today’s weekday number (Monday=1, Tuesday=2, …, Sunday=7). For example, the 7th on a Saturday is 76.
How to Beat It
- Note the day of month. Today’s date, e.g. the 7th → 7.
- Note the weekday number. Monday=1 … Sunday=7, e.g. Saturday → 6.
- Concatenate. Put them back to back: 7 then 6 → 76.
- Enter it. Submit the combined number.
Troubleshooting
- Entered only the date: you need both parts. Concatenate day-of-month and weekday number into one value.
- Weekday numbering off by one: use Monday=1 through Sunday=7. Saturday is 6, Sunday is 7.
- Not sure of today’s date: check your device clock — the level expects the current day’s values.
Why It Works
The level uses a real-world, time-dependent answer, which is a signature “Game Is Hard” move: the correct response changes every day. The “day of the week” isn’t the weekday name but its ordinal (Monday=1), and the two numbers must be concatenated rather than added. It tests whether you’ll parse the phrase as two fields and recall the Monday=1 convention.
The Rule to Carry Forward
When a prompt lists two time values separated by a comma, it often wants them concatenated as one number — and weekday numbering starts at Monday=1.
- Comma-separated values can mean concatenation, not addition.
- Weekdays map to 1–7 with Monday = 1.
- Time-dependent puzzles use today’s real date — check the device clock.
Read it as two digits back-to-back: day-of-month first, weekday second.
Entering only the date or the weekday name. Concatenate both numbers (e.g. 76 for the 7th on Saturday).
Get the Official Game
Game Is Hard Level 205 FAQ
How do I solve Game Is Hard Level 205?
Enter today’s day-of-month followed by today’s weekday number (Monday=1 through Sunday=7) as one concatenated number.
What does “day of the week” mean in Game Is Hard Level 205?
It’s the weekday’s ordinal number — Monday=1, Tuesday=2, … Sunday=7 — not the name of the day.
Why is my answer wrong in Game Is Hard Level 205?
Check you’re using today’s real date and the Monday=1 weekday convention, and that both numbers are concatenated, not added.
More Game Is Hard Help
This is one guide in a complete Game Is Hard index — every stage we've solved is listed on the home page.