From 8e97e9f65ed3470f24dd9081f5be0f07dd1dee7d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9o=20LUDWIG?= Date: Wed, 2 Aug 2023 17:26:47 +0200 Subject: [PATCH] docs: add search command explanation + precise Python runtime (PyPy) --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 4e405e1..08858d6 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ Each challenge has its **solutions**, its **instructions** and **input/output ex - [Dart](https://dart.dev/) - [Java (OpenJDK)](https://openjdk.java.net/) - [JavaScript/TypeScript (Node.js)](https://nodejs.org/) -- [Python](https://www.python.org/) +- [Python (PyPy)](https://www.pypy.org/) - [Rust](https://www.rust-lang.org/) ## 🚀 Getting Started @@ -88,6 +88,9 @@ programming-challenges run test --challenge="hello-world" --solution="function" # Run a solution with specific `input.txt` file programming-challenges run solution --challenge="hello-world" --solution="function" --language="python" --input-path="./challenges/hello-world/test/1/input.txt" --output + +# Search for a challenge not yet solved in a specific programming language +programming-challenges search --language="rust" ``` ## 💡 Contributing