Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Public Finance

Authors: Harvey Rosen

6th International Edition

0071121234, 978-0071121231

Students also viewed these Databases questions

Question

Please help w / a , b , c , & d . . .

Answered: 1 week ago