Skip to content

Commit

Permalink
Merge pull request swapnanildutta#157 from abhishekkagautam/master
Browse files Browse the repository at this point in the history
Matrix Script Python Difficulty level Hard =>>
  • Loading branch information
swapnanildutta committed Oct 6, 2020
2 parents 625ded2 + 2a2875a commit 190c682
Showing 1 changed file with 75 additions and 0 deletions.
75 changes: 75 additions & 0 deletions Python/Matrix_Script.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
'''Neo has a complex matrix script. The matrix script is a X grid of strings. It consists of alphanumeric characters, spaces and symbols (!,@,#,$,%,&).
Capture.JPG
To decode the script, Neo needs to read each column and select only the alphanumeric characters and connect them. Neo reads the column from top to bottom and starts reading from the leftmost column.
If there are symbols or spaces between two alphanumeric characters of the decoded script, then Neo replaces them with a single space '' for better readability.
Neo feels that there is no need to use 'if' conditions for decoding.
Alphanumeric characters consist of: [A-Z, a-z, and 0-9].
Input Format
The first line contains space-separated integers (rows) and (columns) respectively.
The next lines contain the row elements of the matrix script.
Constraints
Note: A score will be awarded for using 'if' conditions in your code.
Output Format
Print the decoded matrix script.
Sample Input 0
7 3
Tsi
h%x
i #
sM
$a
#t%
ir!
Sample Output 0
This is Matrix# %!
Explanation 0
The decoded script is:
This$#is% Matrix# %!
Neo replaces the symbols or spaces between two alphanumeric characters with a single space ' ' for better readability.
So, the final decoded script is:
This is Matrix# %!
'''

#Program


#!/bin/python3

import math
import os
import random
import re
import sys





n, m = map(int, input().split())
a, b = [], ""
for _ in range(n):
a.append(input())

for z in zip(*a):
b += "".join(z)

print(re.sub(r"(?<=\w)([^\w]+)(?=\w)", " ", b))

0 comments on commit 190c682

Please sign in to comment.