plaicer

This is a sample dashboard. The scores, problems and coaching below are illustrative only, not a real candidate's results.

Start your baseline to activate your dashboard

Sample round 2 of 3 · Twelve days ago · +13 vs round 1

Correctness up sharply, but pacing went backwards

See all three rounds and the progress dashboard
Back to the sample dashboard

4-problem sprint

python · 61 of 70 min used
61
Correctness
78

A big step up. Three of four problems passed every hidden test, including the sliding window that failed last time. The task-ordering problem passed 5 of 10 because it does not detect cycles.

Time management
34

This went backwards. You cleared the first three problems in 22 minutes, then spent 39 on the hard one and submitted in the last two minutes without re-reading the brief. Fast is not the same as well-paced.

Edge-case discipline
58

Empty inputs are handled now, which is real progress. The gap that remains is the case the brief explicitly named: a dependency cycle should return an empty list, and yours returns a partial order instead.

Code quality
55

Still the weakest dimension and barely moved. Single-letter names in the topological sort make it hard to follow, and using pop() on a list gives you depth-first behaviour where the brief implied no particular order — accidental rather than chosen.

How you spent your time

Almost the mirror image of your first round. You banked the first three problems quickly and correctly, which is exactly the lesson from last time. Then you spent 39 of 70 minutes on the hard problem and submitted without checking it against the one requirement the brief called out. The last five minutes are worth more spent re-reading the brief than writing more code.

Coaching on each problem
Q1 · First non-repeating item easy
6/6 hidden tests passed · 4 min spent · 2 runs

All hidden tests passed, in half the runs you needed last time.

Nothing to add. This is a solved pattern for you.

Q2 · Group words by their letters medium
9/9 hidden tests passed · 8 min spent · 4 runs

All 9 hidden tests passed. Sorting each word as the bucket key is the standard approach and you got there directly.

For very long words a character-count key avoids the sort, but at these input sizes your version is the right call.

Q3 · Longest window under a limit medium
8/8 hidden tests passed · 10 min spent · 5 runs

All 8 hidden tests passed, including the large inputs that timed out last round. You recognised the two-pointer shape this time.

This is the clearest improvement in the round. The window logic is correct and the single pass is what the hidden tests were checking for.

Q4 · Task ordering with dependencies hard
5/10 hidden tests passed · 39 min spent · 3 runs

The topological sort itself is correct and 5 of 10 hidden tests passed.

Every failing test contains a dependency cycle. Your function returns a partial ordering instead of the empty list the brief asks for.

After the loop, compare len(out) to len(tasks). If they differ, a cycle exists and you return []. That is two lines and it was worth half the marks on this problem.