## Help ```markdown ❯ leetup --help USAGE: leetup FLAGS: -h, --help Prints help information -V, --version Prints version information SUBCOMMANDS: help Prints this message or the help of the given subcommand(s) list List questions pick Pick a problem submit Submit a problem test Submit a problem user User auth ``` ## List ```markdown ❯ leetup list --help List questions USAGE: leetup list [FLAGS] [OPTIONS] [keyword] FLAGS: -h, --help Prints help information -s, --stat Show statistic counter of the output list -V, --version Prints version information OPTIONS: -o, --order Order by ProblemId, Question Title, or Difficulty -q, --query Query by conditions -t, --tag Filter by given tag ARGS: ``` ## Pick ```markdown ❯ leetup pick --help Pick a problem USAGE: leetup pick [FLAGS] [OPTIONS] [id] FLAGS: -d Include problem definition in generated source file -g Generate code if true -h, --help Prints help information -V, --version Prints version information OPTIONS: -l, --lang Language used to generate problem's source [default: rust] ARGS: Show/Pick a problem using ID ``` ## Submit ```markdown ❯ leetup submit --help Submit a problem USAGE: leetup submit FLAGS: -h, --help Prints help information -V, --version Prints version information ARGS: Code filename ``` ## Test ```markdown ❯ leetup test --help Test a problem USAGE: leetup test -t FLAGS: -h, --help Prints help information -V, --version Prints version information OPTIONS: -t Custom test cases ARGS: Code filename ``` ## User ```markdown ❯ leetup user --help User auth USAGE: leetup user [OPTIONS] FLAGS: -h, --help Prints help information -V, --version Prints version information OPTIONS: -c, --cookie Login using cookie -g, --github Login using github -l, --logout Logout user ```