Design a Turing Machine diagram based on the following transition functions given
below. State the language, L accepted by the machine. Also, create a transition table
based on the transition functions given.
\delta (q_(0),a)=(q_(1),a,R)
\delta (q_(0),b)=(q_(2),b,R)
\delta (q_(1),b)=(q_(1),b,R),
\delta (q_(1),diamond)=(q_(3),diamond,R),
\delta (q_(2),b)=(q_(2),b,R)
\delta (q_(2),a)=(q_(3),a,R)