Extract heading levels and texts from a markdown document.
Constraints
Example
```python
>>> parse_markdown_headers('# Title')
[[1, 'Title']]
>>> parse_markdown_headers('## Section 1\nSome text\n### Subsection')
[[2, 'Section 1'], [3, 'Subsection']]
>>> parse_markdown_headers('### Title ###')
[[3, 'Title']]
>>> parse_markdown_headers('####### Not a heading')
[]
>>> parse_markdown_headers('')
[]
```
Recent Submissions
No submissions yet — hit Run Tests to try!
Hints