面试题答案
一键面试def process_nested_list(nested_list):
max_values = [max(sublist) for sublist in nested_list]
binary_strings = [format(value, 'b') for value in max_values]
return binary_strings
nested_list = [[1, 2, 3], [4, 5, 6], [7, 8, 9]]
result = process_nested_list(nested_list)
print(result)