mirror of
https://github.com/prdlk/leetcode.git
synced 2026-09-17 15:36:26 +00:00
8 lines
208 B
TypeScript
Executable File
8 lines
208 B
TypeScript
Executable File
#!/usr/bin/env bun
|
|
/**
|
|
* Fuzzy-select a solution file from work/ and submit it to LeetCode's judge.
|
|
*/
|
|
import { runOnSolution } from "./solutions";
|
|
|
|
await runOnSolution("submit", "Submit which solution?");
|