KiloRaven3800 KiloRaven3800 26-05-2023 Computers and Technology contestada write a scheme function that takes two lists as a parameter and deletes instances of a list (the second parameter) from a list of lists For example, (deleteList '((1 2) (1 3) (1 2)) '(1 2)) would return '((1 3)).