MCPcopy Create free account
hub / github.com/AutoViML/AutoViz / left_subtract

Function left_subtract

autoviz/classify_method.py:27–32  ·  view source on GitHub ↗
(l1, l2)

Source from the content-addressed store, hash-verified

25
26
27def left_subtract(l1, l2):
28 lst = []
29 for i in l1:
30 if i not in l2:
31 lst.append(i)
32 return lst
33
34
35#################################################################################

Callers 1

classify_columnsFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected