(l1, l2)
| 1306 | # Subtract RIGHT_LIST from LEFT_LIST to produce a new list |
| 1307 | ### This program is USED VERY HEAVILY so be careful about changing it |
| 1308 | def list_difference(l1, l2): |
| 1309 | lst = [] |
| 1310 | for i in l1: |
| 1311 | if i not in l2: |
| 1312 | lst.append(i) |
| 1313 | return lst |
| 1314 | |
| 1315 | |
| 1316 | ######## Find ANY word in columns to identify ANY TYPE OF columns |
no outgoing calls
no test coverage detected