Skip to main content
1 of 2

Python 2, 59 bytes

lambda *m:''.join(map(lambda*r:''.join(filter(None,r)),*m)) 

Try it online!