C • Aliff JFLAP source file containing your solution to problem 1. A .txt file containing your solution to either proble
Posted: Fri May 20, 2022 5:18 pm
C • Aliff JFLAP source file containing your solution to problem 1. A .txt file containing your solution to either problem 2.a or problem 2.b. • A.Box. Python source code file for problem 3.a, or this .docx file edited to complete the chart parse for problem 3.b. 1. 55 points. Create a JFLAP TM, and include the jff file in the zip archive. 10 extra credit points for the minimal solution. < = {CA,G,T}, L = { w: #c(w) > #a(w) and #c(w) % 3 > #z(w) % 2}. The file test_cases.txt, included with the test materials, might be useful. Here are the expected results and the explanations: Input String Result Explanation Accept More C's than A's; #c(w) % 3 = 1 > #A(w) % 2 = 0}. Accept More C's than A's; #c(w) % 3 = 2 > #A(w) % 2 = 1}. AGCTTCCG Reject #c(w) % 3 = 0 < #A(w) % 2 1}. AGCTTCG Accept More C's than A's; #c(w) % 3 = 2 > #A(w) % 2 = 1}. AGCTTCACG Reject #c(w) % 3 = 0 = #A(w) % 2 = 0}. ACCACCG Accept More C's than A's; #c(w) % 3 = 1> #a(w) % 2 = 0}. GAGAGCT Reject Fewer C's than A's. ACC = = =