|
Question Details:
Design a Sequential machine M, which given any arbitrary string of a, b, c and d’s, will output 1 every time it “sees” four of any character consecutively. and outputs 0, otherwise. For example, if the input is . . . abaaacddddcaaaabb. . . , it will output 00000000010000100 etc.
|