Skip to content

Latest commit

 

History

History
20 lines (13 loc) · 424 Bytes

README.md

File metadata and controls

20 lines (13 loc) · 424 Bytes

Build Status

About this Kata

http://codingdojo.org/kata/Diamond/

Problem Description

Given a letter, print a diamond starting with ‘A’ with the supplied letter at the widest point.

For example: print-diamond ‘C’ prints

  A
 B B
C   C
 B B
  A