Javascript + Typescript/자바스크립트로 알고리즘풀기
[백준] 10189
치춘
2023. 7. 19. 22:56
Hook
문제
Print out the word Hook as shown below.
출력
Print out the word Hook as shown below.
풀이
const hook = () => {
console.log(`# # #### #### # #
#### # # # # # #
#### # # # # # #
# # #### #### # #`);
};
hook();