(l1, l2)
| 1968 | |
| 1969 | ################################################################################# |
| 1970 | def left_subtract(l1, l2): |
| 1971 | lst = [] |
| 1972 | for i in l1: |
| 1973 | if i not in l2: |
| 1974 | lst.append(i) |
| 1975 | return lst |
| 1976 | |
| 1977 | |
| 1978 | ####### |
no outgoing calls
no test coverage detected