[hackrunk]三角形を描く
1708 ワード
https://www.hackerrank.com/challenges/draw-the-triangle-1/problem?isFullScreen=true
(1)
(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
Reference
この問題について([hackrunk]三角形を描く), 我々は、より多くの情報をここで見つけました
https://velog.io/@2innnnn0/hackerrank-삼각형-그리기
テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考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
Reference
この問題について([hackrunk]三角形を描く), 我々は、より多くの情報をここで見つけました https://velog.io/@2innnnn0/hackerrank-삼각형-그리기テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol