Convert an array of bytes (0–255) into a lowercase hex string.
solve([255, 16, 0]) → 'ff1000'. Pad each byte to 2 hex chars.
solve([255, 16, 0])
'ff1000'
Sample tests