Question: How do I make a new list from a list of lists?

I have a list of lists made from a combinat and was wondering how to make a new list from it that only contains lists that the elements sum up to 0. 

For example:

L1 := [[1,1,1,1], [1,2,0,0], [0,0,0,0], [1,1,-2,0]];

and I want the result to be 

L2:= [[0,0,0,0], [1,1,-2,0]]

Thank you in advance! I'm new to maple so would appreciate the guidance!

Please Wait...