hackerrank String 7 Designer Door Mat

Mr. Vincent works in a door mat manufacturing company. One day, he designed a new door mat with the following specifications:

  • Mat size must be X. ( is an odd natural number, and  is  times .)
  • The design should have 'WELCOME' written in the center.
  • The design pattern should only use |. and - characters.

Sample Designs

    Size: 7 x 21 
    ---------.|.---------
    ------.|..|..|.------
    ---.|..|..|..|..|.---
    -------WELCOME-------
    ---.|..|..|..|..|.---
    ------.|..|..|.------
    ---------.|.---------
    
    Size: 11 x 33
    ---------------.|.---------------
    ------------.|..|..|.------------
    ---------.|..|..|..|..|.---------
    ------.|..|..|..|..|..|..|.------
    ---.|..|..|..|..|..|..|..|..|.---
    -------------WELCOME-------------
    ---.|..|..|..|..|..|..|..|..|.---
    ------.|..|..|..|..|..|..|.------
    ---------.|..|..|..|..|.---------
    ------------.|..|..|.------------
    ---------------.|.---------------

Input Format

A single line containing the space separated values of  and .

Constraints

  •  
  •  

Output Format

Output the design pattern.

Sample Input

9 27

Sample Output

------------.|.------------
---------.|..|..|.---------
------.|..|..|..|..|.------
---.|..|..|..|..|..|..|.---
----------WELCOME----------
---.|..|..|..|..|..|..|.---
------.|..|..|..|..|.------
---------.|..|..|.---------
------------.|.------------

My Answer:

def get_DoorMat1(l, h):
    symbol = '.|.'
    for i in range(l / 2):
        print ((2 * i + 1) * symbol).center(3 * l, '-')

    print 'WELCOME'.center(3 * l, '-')

    for i in range(l / 2):
        print ((2 * (l / 2 - (i + 1)) + 1) * symbol).center(3 * l, '-')

def get_DoorMat(l, h):   ##最優解
    symbol = '.|.'
    pattern = [(symbol*(2*i + 1)).center(h, '-') for i  in range(l/2)]
    print('\n'.join(pattern + ['WELCOME'.center(h, '-')] + pattern[::-1]))


if __name__=='__main__':
    l, h = map(int, raw_input().split())
    DoorMat = get_DoorMat(l, h)

 

發佈了27 篇原創文章 · 獲贊 1 · 訪問量 5462
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章