Fixed Greeting Solutions
6 ranked public solutions.
Solutions
| Author | Title | Rules | Steps | Eval Checks | Cumulative State |
|---|---|---|---|---|---|
| Tim Watts | Direct Greeting | 3 | 3 | 6 | 41 bytes |
| Thue++ Bot | Autoapprove Smoke 134244 | 3 | 3 | 6 | 41 bytes |
| Thue++ Bot | Automerge Smoke 142325 | 3 | 3 | 6 | 41 bytes |
| Public Smoke Test | GLKB 399 Accept Smoke | 3 | 3 | 6 | 41 bytes |
| GLKB Smoke | GLKB Valid Fork Smoke | 3 | 3 | 6 | 41 bytes |
| Tim Watts | Staged Greeting | 4 | 4 | 10 | 66 bytes |
Direct Greeting
By Tim Watts. 3 rules, 3 steps, 6 eval checks, 41 bytes cumulative state.
---
title: Direct Greeting
slug: direct-greeting
author: Tim Watts
website: https://readevalprint.com
summary: Print the greeting with the fewest rules in the pilot set.
---
^START$ ::= OUT\nEXIT
OUT ::> stdout Hello, challenge!\n
^EXIT$ ::- 0
::=
START
Autoapprove Smoke 134244
By Thue++ Bot. 3 rules, 3 steps, 6 eval checks, 41 bytes cumulative state.
---
title: Autoapprove Smoke 134244
slug: autoapprove-smoke-134244
author: Thue++ Bot
website: https://thuelang.org
summary: Valid one-file GitLab.com auto-approve smoke submission.
---
^START$ ::= OUT\nEXIT
OUT ::> stdout Hello, challenge!\n
^EXIT$ ::- 0
::=
START
Automerge Smoke 142325
By Thue++ Bot. 3 rules, 3 steps, 6 eval checks, 41 bytes cumulative state.
---
title: Automerge Smoke 142325
slug: automerge-smoke-142325
author: Thue++ Bot
website: https://thuelang.org
summary: Valid one-file GitLab.com auto-merge smoke submission.
---
^START$ ::= OUT\nEXIT
OUT ::> stdout Hello, challenge!\n
^EXIT$ ::- 0
::=
START
GLKB 399 Accept Smoke
By Public Smoke Test. 3 rules, 3 steps, 6 eval checks, 41 bytes cumulative state.
---
title: GLKB 399 Accept Smoke
slug: glkb-399-accept-smoke
author: Public Smoke Test
website: https://thuelang.org
summary: Manual public smoke test for exact one-file auto-accepted solution submission.
---
^START$ ::= OUT\nEXIT
OUT ::> stdout Hello, challenge!\n
^EXIT$ ::- 0
::=
START
GLKB Valid Fork Smoke
By GLKB Smoke. 3 rules, 3 steps, 6 eval checks, 41 bytes cumulative state.
---
title: GLKB Valid Fork Smoke
slug: glkb-valid-fork-smoke
author: GLKB Smoke
website: https://example.com
summary: Valid fork-backed automerge smoke solution.
---
^START$ ::= OUT\nEXIT
OUT ::> stdout Hello, challenge!\n
^EXIT$ ::- 0
::=
START
Staged Greeting
By Tim Watts. 4 rules, 4 steps, 10 eval checks, 66 bytes cumulative state.
---
title: Staged Greeting
slug: staged-greeting
author: Tim Watts
website: https://readevalprint.com
summary: Route through a READY state before printing the greeting.
---
^START$ ::= READY
^READY$ ::= OUT\nEXIT
OUT ::> stdout Hello, challenge!\n
^EXIT$ ::- 0
::=
START