Problem with diamond.py exercise, I need to support

result = [
    "                         A                         ",
    "                        B B                        ",
    "                       C   C                       ",
    "                      D     D                      ",
    "                     E       E                     ",
    "                    F         F                    ",
    "                   G           G                   ",
    "                  H             H                  ",
    "                 I               I                 ",
    "                J                 J                ",
    "               K                   K               ",
    "              L                     L              ",
    "             M                       M             ",
    "            N                         N            ",
    "           O                           O           ",
    "          P                             P          ",
    "         Q                               Q         ",
    "        R                                 R        ",
    "       S                                   S       ",
    "      T                                     T      ",
    "     U                                       U     ",
    "    V                                         V    ",
    "   W                                           W   ",
    "  X                                             X  ",
    " Y                                               Y ",
    "Z                                                 Z",
    " Y                                               Y ",
    "  X                                             X  ",
    "   W                                           W   ",
    "    V                                         V    ",
    "     U                                       U     ",
    "      T                                     T      ",
    "       S                                   S       ",
    "        R                                 R        ",
    "         Q                               Q         ",
    "          P                             P          ",
    "           O                           O           ",
    "            N                         N            ",
    "             M                       M             ",
    "              L                     L              ",
    "               K                   K               ",
    "                J                 J                ",
    "                 I               I                 ",
    "                  H             H                  ",
    "                   G           G                   ",
    "                    F         F                    ",
    "                     E       E                     ",
    "                      D     D                      ",
    "                       C   C                       ",
    "                        B B                        ",
    "                         A                         ",
]
self.assertEqual(rows("Z"), result)
Test Failure
AssertionError: Lists differ: ['   [16 chars]     A                        ', '            [2525 chars]   '] != ['   [16 chars]      A                         ', '          [2733 chars]   ']

First differing element 0:
'                        A                        '
'                         A                         '

Second list contains 2 additional elements.
First extra element 49:
'                        B B                        '

Diff is 7895 characters long. Set self.maxDiff to None to see it.
Your Output
A                        
                       B B                       
                      C   C                      
                     D     D                     
                    E       E                    
                   F         F                   
                  G           G                  
                 H             H                 
                I               I                
               J         [Output was truncated. Please limit to 500 chars]

I need to know why I have this wrong. I don’t know

It looks like your first row is off by one space.

Sorry IsaacG, I don´t included letter “Ñ” in the map. that way was moved one space. I was always thinking that English alphabet isn’t have letter “ñ”. I’m crazy. Thanks IsaacG for you light me… hahaha