Notice
Recent Posts
Recent Comments
Link
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | ||||||
| 2 | 3 | 4 | 5 | 6 | 7 | 8 |
| 9 | 10 | 11 | 12 | 13 | 14 | 15 |
| 16 | 17 | 18 | 19 | 20 | 21 | 22 |
| 23 | 24 | 25 | 26 | 27 | 28 | 29 |
| 30 |
Tags
- full request
- HTML
- 교차 엔트로피
- early stopping
- 편향-분산 교환
- 코딩공부
- L1정규화
- CSS
- leetcode
- conflict
- L2정규화
- 선형 모형
- RLIKE
- PYTHON
- 온라인협업
- 버전충돌
- mysql
- coding
- elastic net
- AWS
- 클라우드컴퓨팅
- github
- hackerrank
- window function
- Git
- 깃헙협업
- sql
- programmers
- branch
- merge
Archives
- Today
- Total
Im between cherry
Hackerrank | MySQL | Draw The Triangle 2 본문
Draw The Triangle 2
Draw The Triangle 2 | HackerRank
Draw the triangle pattern using asterisks.
www.hackerrank.com
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 @num = 0;
SELECT REPEAT('* ', @num := @num+1)
FROM information_schema.tables
LIMIT 20
SET @NUM:= 0;
SELECT REPEAT('* ', @NUM := @NUM + 1)
FROM information_schema.tables
LIMIT 20;'데이터분석 > practice_query' 카테고리의 다른 글
| Hackerrank | MySQL | Type of Triangle (0) | 2020.08.29 |
|---|---|
| Hackerrank | MySQL | Symmetric Pairs (0) | 2020.08.29 |
| Hackerrank | MySQL | Draw The Triangle 1 (0) | 2020.08.29 |
| Hackerrank | MySQL | Average Population of Each Continent (0) | 2020.08.29 |
| Hackerrank | MySQL | African Cities (0) | 2020.08.29 |
Comments