Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Define a function called create_pattern_list(lines) that takes a list of strings as a parameter and returns a pattern_list which is a list of codes lists.
Define a function called create_pattern_list(lines) that takes a list of strings as a parameter and returns a pattern_list which is a list of codes lists. Each element of the list is a list of single letters.
For example:
Test | Result |
---|---|
lines = ['gggggggg', 'gggggggg', 'gggggggg', 'gggggggg', 'gbbggbbg', 'gggddggg', 'gbbbbbbg', 'gggggggg'] print(create_pattern_list(lines)) | [['g', 'g', 'g', 'g', 'g', 'g', 'g', 'g'], ['g', 'g', 'g', 'g', 'g', 'g', 'g', 'g'], ['g', 'g', 'g', 'g', 'g', 'g', 'g', 'g'], ['g', 'g', 'g', 'g', 'g', 'g', 'g', 'g'], ['g', 'b', 'b', 'g', 'g', 'b', 'b', 'g'], ['g', 'g', 'g', 'd', 'd', 'g', 'g', 'g'], ['g', 'b', 'b', 'b', 'b', 'b', 'b', 'g'], ['g', 'g', 'g', 'g', 'g', 'g', 'g', 'g']] |
lines = ['bbbbbbbb', 'bbbbbbbb', 'bccccccb', 'cccccccc', 'cwpccpwc', 'cccttccc', 'ccbccbcc', 'ccbbbbcc'] print(create_pattern_list(lines)) | [['b', 'b', 'b', 'b', 'b', 'b', 'b', 'b'], ['b', 'b', 'b', 'b', 'b', 'b', 'b', 'b'], ['b', 'c', 'c', 'c', 'c', 'c', 'c', 'b'], ['c', 'c', 'c', 'c', 'c', 'c', 'c', 'c'], ['c', 'w', 'p', 'c', 'c', 'p', 'w', 'c'], ['c', 'c', 'c', 't', 't', 'c', 'c', 'c'], ['c', 'c', 'b', 'c', 'c', 'b', 'c', 'c'], ['c', 'c', 'b', 'b', 'b', 'b', 'c', 'c']] |
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started