<div>Hi,</div>
<div>&nbsp;</div>
<div>Thanx to all for the previous hints how to solve and write the function to calculate the sum of a list of lists.</div>
<div>&nbsp;</div>
<div>Now I need to know how to remove all numbers that are divisable by an integer.</div>
<div>Lets say I have a list [2,4,5,6,8] and when I divide them with number&nbsp;2, my list should look like [5]...because all other numbers in this list are divisible with 2 therefore I remove or filter all of them.</div>
<div>I tried to use some zipWith...filter and other predefined functions..but I can&#39;t really find the right solution :(</div>