[hackerrank] 삼각형 그리기
https://www.hackerrank.com/challenges/draw-the-triangle-1/problem?isFullScreen=true
(1)
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).
set @number = 21;
SELECT repeat('* ', @number := @number - 1)
FROM information_schema.tables
(2)
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).
/*
Enter your query here.
*/
set @number = 0;
SELECT repeat('* ', @number := @number + 1)
FROM information_schema.tables
WHERE @number < 20
Author And Source
이 문제에 관하여([hackerrank] 삼각형 그리기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://velog.io/@2innnnn0/hackerrank-삼각형-그리기
저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
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).
set @number = 21;
SELECT repeat('* ', @number := @number - 1)
FROM information_schema.tables
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).
/*
Enter your query here.
*/
set @number = 0;
SELECT repeat('* ', @number := @number + 1)
FROM information_schema.tables
WHERE @number < 20
Author And Source
이 문제에 관하여([hackerrank] 삼각형 그리기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@2innnnn0/hackerrank-삼각형-그리기저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)