Diamond
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
*
Discussion (opens after you solve — no spoilers before)
No comments yet.