You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
functionswapRanges(x,i,I,j,J)// x: an array// i: begin index of first range// I: end index of first range (exclusive)// j: begin index of second range// J: end index of second range (exclusive)
constxarray=require('extra-array');// Example for swapRangesvarx=[1,2,3,4,5];xarray.swapRanges(x,1,3,3,5);// → [ 1, 4, 5, 2, 3 ]