We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
with starpattern as (select 1 as num
union all
select num + 1
from starpattern
where num<20
)
select replicate('* ', num)as stars
from starpattern
option(maxrecursion 0);
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Draw The Triangle 2
You are viewing a single comment's thread. Return to all comments →
with starpattern as (select 1 as num union all select num + 1 from starpattern where num<20 ) select replicate('* ', num)as stars from starpattern option(maxrecursion 0);