Problems > Diamond

Diamond

Difficulty: 1000 2000 ms 128 MB

implementation

Print a diamond with 2N−1 rows: row i has stars forming the diamond shape, centred with spaces (no trailing spaces).

Input: one integer N.

Output: the figure, one row per line.

Constraints:

  • 1 ≤ N ≤ 60

Sample Tests

Input 1
3
Output 1
  *
 ***
*****
 ***
  *
Input 2
1
Output 2
*

Read the Editorial

Discussion (opens after you solve — no spoilers before)

No comments yet.

Submit Your Solution

Log in or create a free account to run and submit code.