Public viewer

The journey of every round

Every round-trip in the corpus is public. Open one to see the prompt, the zero-point index, the baseline response, the enhanced response, and how each grader read the difference. Leave a comment if a grader's reading lands — or doesn't.

#89311 May 26

Use Memory<byte> and ArrayPool<byte>.Shared to read a file in 4KB chunks without re-allocating buffers per iteration. No async.

V1WorseV2ΔLcsharp
#89011 May 26

Demonstrate await on Task.Delay inside an async method that returns Task<int>. Show calling it twice in parallel via Task.WhenAll.

V1WorseV2ΔLcsharp
#88511 May 26

Use DateTime.UtcNow plus a TimeSpan to compute a deadline 7 business days from now, skipping Saturday and Sunday.

V1WorseV2ΔLcsharp
#88411 May 26

Write a Regex that matches IPv4 addresses in the form '1.2.3.4' (each octet 0–255). Use Regex.Match on a sample string.

V1WorseV2ΔLcsharp
#88111 May 26

Use StringBuilder to format a CSV row from an array of object?, treating null as empty. Escape any commas in values by wrapping in quotes.

V1WorseV2ΔLcsharp
#87911 May 26

Write a ReadOnlySpan<byte>-based UTF-8 BOM check: return true if the span starts with the bytes 0xEF 0xBB 0xBF.

V1WorseV2ΔLcsharp
#87211 May 26

Write a switch expression that maps an int status code (200, 301, 404, 500) to a string label. Use the 'when' clause for the 5xx range.

V1WorseV2ΔLcsharp
#86611 May 26

Configure Serilog with a console sink and a file sink that rolls daily. Include a custom enricher (ILogEventEnricher) that adds the machine name to every log event.

V1WorseV2ΔL+0.1csharp
#86011 May 26

Define a gRPC service in protobuf with one bidirectional streaming method that echoes back messages with a server-side timestamp. Show the server-side service implementation.

V1WorseV2ΔL+0.0csharp
#85911 May 26

Build a SignalR Hub that lets clients subscribe to a 'price-tick' channel and broadcasts ticks to all subscribers on a one-second timer.

V1WorseV2ΔL+0.0csharp
#85511 May 26

Write a FluentValidation AbstractValidator<T> for a 'RegisterUser' command: email (valid format), password (≥ 8 chars, has digit and symbol), age (18+).

V1WorseV2ΔL-0.1csharp
#84611 May 26

Implement an IHealthCheck that returns Healthy when a TCP socket on a remote host responds within 500ms, and Unhealthy otherwise.

V1WorseV2ΔL+0.0csharp
#84210 May 26

Write a Regex that matches IPv4 addresses in the form '1.2.3.4' (each octet 0–255). Use Regex.Match on a sample string.

V1WorseV2ΔLcsharp
#84110 May 26

Write a ReadOnlySpan<byte>-based UTF-8 BOM check: return true if the span starts with the bytes 0xEF 0xBB 0xBF.

V1WorseV2ΔLcsharp
#83710 May 26

Build a SignalR Hub that lets clients subscribe to a 'price-tick' channel and broadcasts ticks to all subscribers on a one-second timer.

V1WorseV2ΔL+0.0csharp
#78410 May 26

Write a SQL query that returns the top 5 customers by total spend in 2025.

V1WorseV2ΔLcsharp
#77910 May 26

What is the least common multiple of 4, 6, and 9?

V1WorseV2ΔLcsharp
#77710 May 26

What is the area of a circle with radius 5? Use pi approximately 3.14159.

V1WorseV2ΔLcsharp
#77610 May 26

Simplify the expression 3x squared times 4x cubed.

V1WorseV2ΔLcsharp
#77310 May 26

What is the greatest common divisor of 36 and 48?

V1WorseV2ΔLcsharp
#77210 May 26

Calculate 25 squared minus 24 squared.

V1WorseV2ΔLcsharp
#76810 May 26

What is 2 cubed times 3 squared?

V1WorseV2ΔLcsharp
#76610 May 26

What is the perimeter of a triangle with sides 5, 7, and 10?

V1WorseV2ΔLcsharp
#76510 May 26

Solve: 2x squared minus 8 equals 0

V1WorseV2ΔLcsharp