Convert a space-separated hex dump string into a list of byte values.
Constraints
Example
>>> parse_hex_dump("48 65 6c 6c 6f")
[72, 101, 108, 108, 111]
>>> parse_hex_dump("0a 0D")
[10, 13]
>>> parse_hex_dump(" ")
[]
Recent Submissions
No submissions yet — hit Run Tests to try!
Hints