100-days-of-rust/Week-07/Day-48_Christmas-Tree
2024-09-11 12:24:58 +02:00
..
day48 Wrote program for Day 48 2024-09-11 12:24:58 +02:00
README.md Add files via upload 2023-03-23 21:14:34 -04:00

Christmas Tree

Write a function to create a Christmas tree based on height h.

Examples

tree(1) ➞ [
  "#"
]

tree(2) ➞ [
  " # ",
  "###"
]

tree(5) ➞ [
  "    #    ",
  "   ###   ",
  "  #####  ",
  " ####### ",
  "#########"
]

tree(0) ➞ []