这里写自定义目录标题
String smoothing
picked_tasks 来自dataframe
window_size = 5
window_strings = deque(maxlen=window_size)
eliminated_result = []
for idx, current_string in enumerate(picked_tasks):
eliminated_result.append(current_string)
if len(window_strings) == window_size and current_string == window_strings[0]:
for i in range(idx-window_size+1,id