Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Write an F# function interleave l1 l2 (defined below with examples) that interleaves two lists of arbitrary size: > interleave [1..3] [4..6];; val it :
Write an F# function interleave l1 l2 (defined below with examples) that interleaves two lists of arbitrary size:
> interleave [1..3] [4..6];;
val it : int list = [1; 4; 2; 5; 3; 6]
> interleave [1..10] [3..5];;
val it : int list = [1; 3; 2; 4; 3; 5; 4; 5; 6; 7; 8; 9; 10]
> interleave [3..5] [1..10];;
val it : int list = [3; 1; 4; 2; 5; 3; 4; 5; 6; 7; 8; 9; 10]
> interleave ["cat"; "dog"; "elephant"; "lion"] ["tiger"; "rat"];;
val it : string list = ["cat"; "tiger"; "dog"; "rat"; "elephant"; "lion"]
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started