Problems > Hollow Square

Hollow Square

Difficulty: 900 2000 ms 128 MB

implementation

Print an N×N square of # that is hollow: only the border cells are hashes, interior cells are dots.

Input: one integer N.

Output: the figure, one row per line.

Constraints:

  • 1 ≤ N ≤ 100

Sample Tests

Input 1
4
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.