The diamond kata takes as its input a letter, and outputs it in a diamond shape. Given a letter, it prints a diamond starting with 'A', with the supplied letter at the widest point.
In the following examples, spaces are indicated by · characters.
Diamond for letter 'A':
ADiamond for letter 'C':
··A··
·B·B·
C···C
·B·B·
··A··Diamond for letter 'E':
····A····
···B·B···
··C···C··
·D·····D·
E·······E
·D·····D·
··C···C··
···B·B···
····A····The diamond kata takes as its input a letter, and outputs it in a diamond shape. Given a letter, it prints a diamond starting with 'A', with the supplied letter at the widest point.
In the following examples, spaces are indicated by · characters.
Diamond for letter 'A':
ADiamond for letter 'C':
··A··
·B·B·
C···C
·B·B·
··A··Diamond for letter 'E':
····A····
···B·B···
··C···C··
·D·····D·
E·······E
·D·····D·
··C···C··
···B·B···
····A····