Question: CODE IN ERLANG 5. Function remove Div3 that takes a list of numbers and returns the original list with all values divisible by 3 removed,
CODE IN ERLANG

5. Function remove Div3 that takes a list of numbers and returns the original list with all values divisible by 3 removed, e.g. if the original list contains [0, 1, 2, -3, 6), then [1, 2] is returned; you are NOT allowed to use built-in functions or list comprehension; add appropriate test cases to the test file that use true matching pattern (i.e. the other method that does NOT use assertEqual) 5. Function remove Div3 that takes a list of numbers and returns the original list with all values divisible by 3 removed, e.g. if the original list contains [0, 1, 2, -3, 6), then [1, 2] is returned; you are NOT allowed to use built-in functions or list comprehension; add appropriate test cases to the test file that use true matching pattern (i.e. the other method that does NOT use assertEqual)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
