2026-08-25 11:19:26 -04:00
|
|
|
#!/usr/bin/env bun
|
|
|
|
|
/**
|
|
|
|
|
* Fuzzy-select a solution file from work/ and run leetcode-cli tests on it.
|
|
|
|
|
*/
|
2026-08-26 15:25:35 -04:00
|
|
|
import { runOnSolution } from "./solutions";
|
2026-08-25 11:19:26 -04:00
|
|
|
|
2026-08-26 15:25:35 -04:00
|
|
|
await runOnSolution("test", "Test which solution?");
|