Hi!
I want to remove elements in a list, that fulfill certain criteria. That is, in a list, I want to be able to remove all integers that are divisible by a given number N, which I like to give as input. In the example below N = 2.
listDivByN([1,2,3,4,5], 2, List).
should result in:
List =...