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).
select rpad('*',level*2-1,' *')
from dual
connect by level<=20;
이번에도 빈 공백을 계산해야 하므로, 2*level-1
로 하면, 1에는 1칸, 2에는 3칸 등등으로 크기가 생성되게 된다. 그것을 20까지 하면 된다.