1
1
mirror of https://github.com/theoludwig/programming-challenges.git synced 2024-07-18 02:20:12 +02:00

docs: add search command explanation + precise Python runtime (PyPy)

This commit is contained in:
Théo LUDWIG 2023-08-02 17:26:47 +02:00
parent c53c2997ec
commit 8e97e9f65e
Signed by: theoludwig
GPG Key ID: ADFE5A563D718F3B

View File

@ -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