All problems
EasySets
Set intersection
Print the common elements between two sets (sorted).
- #set
- #intersection
Sample input
{1,2,3,4}, {3,4,5,6}Sample output
[3, 4]
set-intersection.py
Output
Press "Run code" to execute.
Loading…
Print the common elements between two sets (sorted).
{1,2,3,4}, {3,4,5,6}[3, 4]
Press "Run code" to execute.