Search snippets
Browse Code Answers
FAQ
Usage docs
Log In
Sign Up
Home
TypeScript
Write a function that accepts as input two sets represented as lists and produces at output a list representing the intersection of the two sets. Example: >(union ’(a b c d e f) ’(a c f e x y)) ; Value: (a b c d e f x y)
ASHIS ROY
Programming language:
TypeScript
2021-03-28 23:58:03
0
Q:
Write a function that accepts as input two sets represented as lists and produces at output a list representing the intersection of the two sets. Example: >(union ’(a b c d e f) ’(a c f e x y)) ; Value: (a b c d e f x y)
Alejandro Mora
Code:
TypeScript
2021-09-17 14:57:52
(define (checkresult a b) (list (subtract a b) (subtract b a) (union a b) (intersect a b)))
0
Tags
example
value
list
function
int
set
input
two
two sets
Related
between two sets problem hackerrank solution in c
Write a program that asks the user to enter an integer and prints two integers, root and pwr, such that 0 < pwr < 6 and root**pwr is equal to the integer entered by the user. If no such pair of integers exists, it should print a message to that effect.
intersection between two sets python
New to Communities?
Join the community