天気リストが ocaml でソートされていることを確認するのに助けが必要です
これは機能しますか?
let issorted x = match x with
[] -> true
| _::[] -> true
| _::_ -> issorted_helper (x)
;;
let rec issorted_helper x = match x with
| [] -> true
| h::t ->
if h > t
false
else
issorted_helper(t)
;;