1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
| cases = int(input()) for case in range(cases): (num_poke, rows, cols) = map(int, input().split())
pokemons = [input().strip() for p in range(num_poke)]
text = "" for l in range(rows): text += str(input().strip().replace(" ", "")) while True: has_found = False
for pokemon in pokemons:
find_straight = text.find(pokemon) if find_straight != -1: text = text[:find_straight] + text[find_straight+len(pokemon):] has_found = True
find_reverse = text.find(pokemon[::-1]) if find_reverse != -1: text = text[:find_reverse] + text[find_reverse+len(pokemon):] has_found = True
if not has_found: break
print(f'Case #{case+1}: {text}')
|