Python Hex String to Integer Array or List
Problem Formulation Given a hex string, i.e., a string of hexadecimal digits like so: 01ffa87135affcd45deebe You want to convert a batch of k hex digits to an integer. For example with k=2, you obtain the following batches of two hex digits each: 01 ff a8 71 35 af fc d4 5d ee be Now, convert … Read more