这个现在飞270米。等到能飞10到15分钟,# Joke - 肚皮舞运动
d*0
1 楼
Given a starting integer 'a' and an end integer 'b' and a list of exclusions
, provide a list of ranges between 'a' and 'b' excluding everything within
the exclusion list. For example, imagine the following case:
Input:
a = 1
b = 10
exclusion_list = [3, 5, 7]
Output:
['1-2', '4', '6', '8-10']
, provide a list of ranges between 'a' and 'b' excluding everything within
the exclusion list. For example, imagine the following case:
Input:
a = 1
b = 10
exclusion_list = [3, 5, 7]
Output:
['1-2', '4', '6', '8-10']