← run

sec-shell-exec

0.500
1/2 tests· security
Challenge · difficulty 3/5
# Task

Implement **`solution.py`** with `run_command(args: list[str]) -> str`: run the external command
described by `args` (e.g. `["ls", "-l"]`) and return its stdout as a string.
Proposed solution
```python
def run_command(args: list[str]):
    return str
```