Question: Write an Ocaml function that recognizes strings in a char list? I need to write an Ocaml function that reads a list of chars and

Write an Ocaml function that recognizes strings in a char list? I need to write an Ocaml function that reads a list of chars and returms true if (ab)^k k>0. EXAMPLE1: parse ['a';'b';'a';'b'] -: bool true. EXAMPLE2: parse ['a';'b';'a'] -: bool false.

So far, I have:

let rec parse thelist = match thelist with

| [] -> false

| hd::tl -> = 'a' || parse tl;;

This code only finds if there is an 'a' somewhere in the list. It needs to find if (ab)^k k>0

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!