Untitled

Anonymous
ocaml
10/28/2021 4:31 PM
252 B
19
Indexable
let rec inner_pivot list l r =
  match list with
    [] -> l, r
  | x::xs when x < 0 -> inner_pivot xs (x::l) r
  | x::xs -> inner_pivot xs l (x::r);;

let pivot l = inner_pivot l [] [];;
Editor is loading...