Transform a string by converting every space into a dash.
Constraints
Example
```python
>>> dashify("hello world")
'hello-world'
>>> dashify(" multiple spaces ")
'--multiple---spaces--'
>>> dashify("")
''
```
Recent Submissions
No submissions yet — hit Run Tests to try!
Hints