Question: Write an F#(F Sharp) function revlists xs that takes a list of lists xs and reverses all the sub-lists: > revlists [[0;1;1];[3;2];[];[5]];; val it :
Write an F#(F Sharp) function revlists xs that takes a list of lists xs and reverses all the sub-lists:
> revlists [[0;1;1];[3;2];[];[5]];; val it : int list list = [[1; 1; 0]; [2; 3]; []; [5]]
Hint: This takes just one line of code, using List.map and List.rev.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
