[HackerRank] Draw The Triangle 2

당당·2023년 7월 24일
0

HackerRank

목록 보기
25/27

https://www.hackerrank.com/challenges/draw-the-triangle-2/problem

📔문제

P(R) represents a pattern drawn by Julia in R rows. The following pattern represents P(5):

* 
* * 
* * * 
* * * * 
* * * * *

Write a query to print the pattern P(20).


📃SQL 코드

select rpad('*',level*2-1,' *')
from dual
connect by level<=20;

📰출력 결과


📂고찰

이번에도 빈 공백을 계산해야 하므로, 2*level-1로 하면, 1에는 1칸, 2에는 3칸 등등으로 크기가 생성되게 된다. 그것을 20까지 하면 된다.

profile
MySQL DBA 신입

0개의 댓글