본문 바로가기
python-algorithm

백준 10189 Hook

by 무적김두칠 2022. 12. 19.

https://www.acmicpc.net/problem/10189

 

10189번: Hook

Print out the word Hook as shown below.

www.acmicpc.net

 

1
2
3
4
5
6
7
8
9
def sol():
    print('#  # #### #### #  #')
    print('#### #  # #  # # #')
    print('#### #  # #  # # #')
    print('#  # #### #### #  #')
 
 
if __name__ == '__main__':
    sol()
cs
반응형

'python-algorithm' 카테고리의 다른 글

백준 26545 Mathematics  (0) 2022.12.19
백준 26574 Copier  (0) 2022.12.19
백준 6840 Who is in the middle?  (0) 2022.12.17
백준 5341 Pyramids  (0) 2022.12.17
백준 26489 Gum Gum for Jay Jay  (0) 2022.12.17

댓글