-->
当前位置:首页 > 题库

PROGRAMMING:List subtraction

Luz5年前 (2021-05-10)题库406
Enter two lists and delete some elements in list 2 in list 1.
###Input format:
Enter list 1 and list 2.
###Output format:
Output processed list 1.
###Input example:
Here is a set of inputs. For example:
```in
['Red ',' green ',' Blue ',' Red ',' yellow ']
['Blue ',' Red ',' Black ',' Blue ',' white ']
```
###Output example:
The corresponding output is given here. For example:
```out
['green ','yellow']
```







answer:If there is no answer, please comment