Alteração de sinal, loop e exibição com estofamento mínimo

17

Entrada:

Dois inteiros: um negativo, um positivo.

Resultado:

Na saída da primeira linha, do menor para o maior. Na segunda linha, removemos os números mais alto e mais baixo e alteramos todos os números individualmente. Na terceira linha, removemos os números mais alto e mais baixo novamente e alteramos novamente todos os números individuais. etc. (O exemplo abaixo deve tornar o desafio mais claro.)

Importante: Além disso, adicionamos espaços para que os números em uma coluna estejam todos alinhados (à direita).
O alinhamento mínimo é a parte principal desse desafio, isso significa que você não pode simplesmente fazer com que cada número tenha a mesma largura. A largura de uma coluna é baseada na maior largura numérica dessa coluna específica (e a sequência com alteração de sinal deve fornecer aos números alguma variedade de largura por coluna).


Por exemplo:

Input: -3,6

Output:
-3,-2,-1, 0, 1, 2, 3, 4,5,6   // sequence from lowest to highest
 2, 1, 0,-1,-2,-3,-4,-5       // -3 and 6 removed; then all signs changed
-1, 0, 1, 2, 3, 4             // 2 and -5 removed; then all signs changed again
 0,-1,-2,-3                   // -1 and 4 removed; then all signs changed again
 1, 2                         // 0 and -3 removed; then all signs changed again
                              // only two numbers left, so we're done

Como você pode ver acima, os espaços são adicionados aos números positivos, quando eles compartilham uma coluna com números negativos para compensar o -(o mesmo se aplicaria aos números de 2 dígitos).

Regras do desafio:

  • A entrada deve ter dois números inteiros
    • Você pode assumir que esses números inteiros estão no intervalo -99- 99(inclusive).
    • O primeiro número inteiro será negativo e o outro será positivo.
  • A saída pode estar em qualquer formato razoável, desde que fique claro que há linhas e colunas alinhadas corretamente: Ie STDOUT; retornando como String com novas linhas; retornando como lista de strings; etc. Sua ligação.
  • A saída também deve conter um delimitador de sua própria escolha (exceto espaços, tabulações, novas linhas, dígitos ou -): Ou seja ,; e ;e |; e X; etc. são todos delimitadores aceitáveis.
  • As linhas de saída podem não conter um delimitador inicial ou final.
  • A saída pode conter UMA nova linha final, e qualquer linha pode conter qualquer número de espaços finais.

Regras gerais:

  • Isso é , então a resposta mais curta em bytes vence.
    Não permita que idiomas com código de golfe o desencorajem a postar respostas com idiomas que não sejam codegolf. Tente encontrar uma resposta o mais curta possível para 'qualquer' linguagem de programação.
  • As regras padrão se aplicam à sua resposta, para que você possa usar STDIN / STDOUT, funções / método com os parâmetros adequados, programas completos. Sua chamada.
  • As brechas padrão são proibidas.
  • Se possível, adicione um link com um teste para o seu código.
  • Além disso, adicione uma explicação, se necessário.

Casos de teste:

Input: -3,6

Output:
-3,-2,-1, 0, 1, 2, 3, 4,5,6
 2, 1, 0,-1,-2,-3,-4,-5
-1, 0, 1, 2, 3, 4
 0,-1,-2,-3
 1, 2

Input: -1,1

Output:
-1,0,1
 0

Input: -2,8

Output:
-2,-1, 0, 1, 2, 3, 4, 5, 6,7,8
 1, 0,-1,-2,-3,-4,-5,-6,-7
 0, 1, 2, 3, 4, 5, 6
-1,-2,-3,-4,-5
 2, 3, 4
-3

Input: -15,8

Output: 
-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-4,-3,-2,-1, 0, 1, 2, 3, 4, 5, 6,7,8
 14, 13, 12, 11, 10,  9, 8, 7, 6, 5, 4, 3, 2, 1, 0,-1,-2,-3,-4,-5,-6,-7
-13,-12,-11,-10, -9, -8,-7,-6,-5,-4,-3,-2,-1, 0, 1, 2, 3, 4, 5, 6
 12, 11, 10,  9,  8,  7, 6, 5, 4, 3, 2, 1, 0,-1,-2,-3,-4,-5
-11,-10, -9, -8, -7, -6,-5,-4,-3,-2,-1, 0, 1, 2, 3, 4
 10,  9,  8,  7,  6,  5, 4, 3, 2, 1, 0,-1,-2,-3
 -9, -8, -7, -6, -5, -4,-3,-2,-1, 0, 1, 2
  8,  7,  6,  5,  4,  3, 2, 1, 0,-1
 -7, -6, -5, -4, -3, -2,-1, 0
  6,  5,  4,  3,  2,  1
 -5, -4, -3, -2
  4,  3

Input: -3,15

Output:
-3,-2,-1, 0, 1, 2, 3, 4,  5, 6,  7,  8,  9, 10, 11, 12, 13,14,15
 2, 1, 0,-1,-2,-3,-4,-5, -6,-7, -8, -9,-10,-11,-12,-13,-14
-1, 0, 1, 2, 3, 4, 5, 6,  7, 8,  9, 10, 11, 12, 13
 0,-1,-2,-3,-4,-5,-6,-7, -8,-9,-10,-11,-12
 1, 2, 3, 4, 5, 6, 7, 8,  9,10, 11
-2,-3,-4,-5,-6,-7,-8,-9,-10
 3, 4, 5, 6, 7, 8, 9
-4,-5,-6,-7,-8
 5, 6, 7
-6

Input: -12,12

Output:
-12,-11,-10,-9,-8,-7,-6,-5,-4,-3,-2,-1, 0, 1, 2, 3, 4, 5, 6, 7, 8,  9, 10,11,12
 11, 10,  9, 8, 7, 6, 5, 4, 3, 2, 1, 0,-1,-2,-3,-4,-5,-6,-7,-8,-9,-10,-11
-10, -9, -8,-7,-6,-5,-4,-3,-2,-1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9,10
  9,  8,  7, 6, 5, 4, 3, 2, 1, 0,-1,-2,-3,-4,-5,-6,-7,-8,-9
 -8, -7, -6,-5,-4,-3,-2,-1, 0, 1, 2, 3, 4, 5, 6, 7, 8
  7,  6,  5, 4, 3, 2, 1, 0,-1,-2,-3,-4,-5,-6,-7
 -6, -5, -4,-3,-2,-1, 0, 1, 2, 3, 4, 5, 6
  5,  4,  3, 2, 1, 0,-1,-2,-3,-4,-5
 -4, -3, -2,-1, 0, 1, 2, 3, 4
  3,  2,  1, 0,-1,-2,-3
 -2, -1,  0, 1, 2
  1,  0, -1
  0
Kevin Cruijssen
fonte
11
"Nunca fora de -100-100" inclui isso nunca sendo -100 ou 100 também?
Jonathan Allan
@ JonathanAllan Eu acho que sim. Faz sentido excluindo -100 e 100, porque se eles foram incluídos, será adicionado um 3º / 4º dígitos e tudo teria de ser alterado para apenas 2 valores
Mr. Xcoder
Relacionado. (Outro desafio onde estofamento e-alinhamento direito a grade é o principal componente.)
Martin Ender
11
@ JonathanAllan Eu mudei um pouco a redação. Você pode assumir a menor entrada negativa possível -99e a maior entrada positiva possível 99.
21717 Kevin KevinMerijssen em
11
Caso de teste proposto: -3,15. Algumas respostas não funcionam corretamente.
betseg

Respostas:

7

Gelatina , 25 24 20 bytes

rµḊṖNµÐĿZbȷG€Ỵ€Zj€”,

Este é um link diádico que retorna uma matriz de linhas.

Experimente online!

Como funciona

rµḊṖNµÐĿZbȷG€Ỵ€Zj€”,  Dyadic link. Arguments: a, b

r                      Range; yield [a, ..., b].
 µ   µÐĿ               Apply the enclosed chain until the results are no longer
                       unique. Return the array of results.
  Ḋ                      Dequeue; remove the first item.
   Ṗ                     Pop; remove the last item.
    N                    Negate; multiply all remaining integers by -1.
       Z               Zip; transpose rows and columns.
        bȷ             Base 1000; map each n to [n].
          G€           Grid each; in each row, pad all integers to the same length,
                       separating the (singleton) rows by linefeeds.
            Ỵ€         Split each result at linefeeds.
              Z        Zip to restore the original layout.
               j€”,    Join each row, separating by commata.
Dennis
fonte
7

05AB1E , 59 bytes

Mais uma vez, estou ferrado com o mesmo bug que escrevi uma correção há meses atrás, mas nunca fui pressionado ... O
golfe ainda deve ser possível.

Ÿ[Ðg1‹#ˆ¦(¨]\\¯vy€g}})J.Bvyð0:S})øvyZs\})U¯vyvyXNèyg-ú}',ý,

Experimente online!

Emigna
fonte
Eu tenho muito perto com este: ŸÐ',ý,gÍ;µ¦¨(D',ý,¼, ele não se encaixa as especificações de formatação, veja se você pode melhorá-lo;)
Okx
11
@ Ok: Sim, a formatação é definitivamente a parte mais difícil aqui. Algo como Ÿ[Ðg1‹#',ý,¦(¨seria suficiente caso contrário :)
Emigna
11
Não funciona corretamente para entradas como -3,15.
betseg 10/03/19
@ betseg: você é. Revertido para a versão antiga.
Emigna
7

Java 8, 483 480 486 467 bytes

(a,b)->{int f=0,l=b-a+3,z[][]=new int[l][l],y[]=new int[l],i,j,k=0;for(;b-a>=0;k++,a++,b--,f^=1)for(j=0,i=a;i<=b;i++)z[k][j++]=f<1?i:-i;String r="",s;for(i=0;i<l;y[i++]=k)for(j=0,k=1;j<l;k=f>k?f:k)f=(r+z[j++][i]).length();for(i=0;i<l;i++){k=z[i][0];if(i>0&&k==z[i][1]&k==z[i-1][2])break;for(j=0;j<l;){k=z[i][j];s="";for(f=(s+k).length();f++<y[j];s+=" ");f=z[i][++j];if(k==f){r+=(i>0&&z[i-1][1]==z[i][1]?s+0:"")+"\n";j=l;}else r+=s+k+(f==z[i][j+1]?"":",");}}return r;}

Bytes gerados devido a correção de bugs.

Ok, isso levou muito mais tempo (e bytes) do que eu pensava (em Java, que é ..). Definitivamente, isso pode ser um pouco mais complicado, provavelmente usando uma abordagem completamente diferente, em vez de criar uma matriz de grade NxN para preencher e depois 'retirar' os zeros (com uma borda irritante para o caso de teste e -1,1também -12,12) .

Experimente online.

Explicação:

(a,b)->{        // Method with two integer parameters and String return-type
  int f=0,      //  Flag-integer, starting at 0
      l=b-a+3,  //  Size of the NxN matrix,
                //  plus two additional zeros (so we won't go OutOfBounds)
      z[][]=new int[l][l],
                //  Integer-matrix (default filled with zeros)
      y[] = new int[l],
                //  Temp integer-array to store the largest length per column
      i,j,k=0;  //  Index-integers
  for(;b-a>=0   //  Loop as long as `b-a` is not negative yet
      ;         //    After every iteration:
       k++,     //     Increase `k` by 1
       a++,     //     Increase `a` by 1
       b--,     //     Decrease `b` by 1
       f^=1)    //     Toggle the flag-integer `f` (0→1 or 1→0)
    for(j=0,i=a;i<=b;i++)
                //   Inner loop `i` in the range [`a`, `b`]
      z[k][j++]=//    Set all the values in the matrix to:
        f<1?    //     If the flag is 0:
         i      //      Simply use `i`
        :       //     Else (flag is 1):
         -i;    //      Use the negative form of `i` instead
  String r="",  //  The return-String
         s;     //  Temp-String used for the spaces
  for(i=0;i<l;  //  Loop `i` over the rows of the matrix
      ;y[i++]=k)//    After every iteration: Set the max column-width
    for(j=0,k=1;j<l;
                //   Inner loop `j` over the cells of each row
        k=f>k?f:k)
                //     After every iteration: Set `k` to the highest of `k` and `f`
      f=(r+z[j++][i]).length();
                //    Determine current number's width
                //    (NOTE: `f` is no longer the flag, so we re-use it as temp value)
  for(i=0;i<l;i++){
                //  Loop `i` over the rows of the matrix again
    k=z[i][0];  //   Set `k` to the first number of this row
    if(i>0      //   If this isn't the first row
       &&k==z[i][1]&k==z[i-1][2])
                //   and the first number of this row, second number of this row,
                //   AND third number of the previous row all equal (all three are 0)
      break;    //    Stop loop `i`
    for(j=0;j<l;){
                //   Inner loop `j` over the cells of each row
      k=z[i][j];//    Set `k` to the number of the current cell
      s="";     //    Make String `s` empty again
      for(f=(s+k).length();f++<y[j];s+=" ");
                //    Append the correct amount of spaces to `s`,
                //    based on the maximum width of this column, and the current number
      f=z[i][++j];
                //    Go to the next cell, and set `f` to it's value
      if(k==f){ //    If the current number `k` equals the next number `f` (both are 0)
        r+=     //     Append result-String `r` with:
          (i>0  //      If this isn't the first row
           &&z[i-1][1]==z[i][1]?
                //      and the second number of this and the previous rows 
                //      are the same (both are 0):
            s+0 //       Append the appropriate amount of spaces and a '0'
           :    //      Else:
            "") //       Leave `r` the same
          +"\n";//     And append a new-line
         j=l;}  //     And then stop the inner loop `j`
      else      //    Else:
       r+=s     //     Append result-String `r` with the appropriate amount of spaces
          +k    //     and the number 
          +(f==z[i][j+1]?"":",");}}
                //     and a comma if it's not the last number of the row
  return r;}    //  Return the result `r`
Kevin Cruijssen
fonte
6

Javascript (ES6), 269 bytes

(a,b,d=~a+b+2,o=Array(~~(d/2)+1).fill([...Array(d)].map(_=>a++)).map((e,i)=>e.slice(i,-i||a.a)).map((e,i)=>i%2==0?e:e.map(e=>e*-1)))=>o.map(e=>e.map((e,i)=>' '.repeat(Math.max(...[...o.map(e=>e[i]).filter(e=>e!=a.a)].map(e=>[...e+''].length))-`${e}`.length)+e)).join`
`

Explicado:

(                                     // begin arrow function

  a,b,                                // input

  d=~a+b+2,                           // distance from a to b

  o=Array(~~(d/2)+1)                  // create an outer array of
                                      // (distance divided by 2 
                                      // floored + 1) length

    .fill(                            // fill each outer element
                                      // with the following:

      [...Array(d)]                   // create inner array of the 
                                      // distance length and 
                                      // fill with undefined

        .map(_=>a++)                  // map each inner element 
                                      // iterating from a to b
    ) 
    .map(                             // map outer array

      (e,i)=>e.slice(i,-i||a.a)       // remove n elements from each end 
                                      // of the inner array corresponding 
                                      // to the outer index with a special 
                                      // case of changing 0 to undefined
    )
    .map(                             // map outer array

      (e,i)=>i%2==0?e:e.map(e=>e*-1)  // sign change the inner elements
                                      // in every other outer element
    )
)=>                                   // arrow function return

  o                                   // outer array

    .map(                             // map outer array

      e=>e.map(                       // map each inner array

        (e,i)=>' '.repeat(            // repeat space character the
                                      // following amount:

          Math.max(...                // spread the following array to
                                      // max arguments:

            [...                      // spread the following to an
                                      // array:

              o                       // outer array

                .map(e=>e[i])         // map returning each element of
                                      // the same inner index from the
                                      // outer array

                .filter(e=>e!=a.a)    // remove undefined elements
            ]
            .map(e=>[...e+''].length) // map each element to the  
                                      // length of the string

          )                           // returns the max string 
                                      // length of each column

          -`${e}`.length              // subtract the current 
                                      // element's string length 
                                      // from the max string length

      )                               // returns the appropriate amount
                                      // of padding

      +e                              // add the element to the padding
    )
  ).join`
`                                     // join each element of outer
                                      // array as string with newline

const f = (a,b,d=~a+b+2,o=Array(~~(d/2)+1).fill([...Array(d)].map(_=>a++)).map((e,i)=>e.slice(i,-i||a.a)).map((e,i)=>i%2==0?e:e.map(e=>e*-1)))=>o.map(e=>e.map((e,i)=>' '.repeat(Math.max(...[...o.map(e=>e[i]).filter(e=>e!=a.a)].map(e=>[...e+''].length))-`${e}`.length)+e)).join`
`
console.log('Test Case: -1,1')
console.log(f(-1,1))
console.log('Test Case: -3,6')
console.log(f(-3,6))
console.log('Test Case: -2,8')
console.log(f(-2,8))
console.log('Test Case: -15,8')
console.log(f(-15,8))
console.log('Test Case: -3,15')
console.log(f(-3,15))
console.log('Test Case: -12,12')
console.log(f(-12,12))

powelles
fonte
Você pode adicionar os novos casos de teste?
betseg
4

QBIC , 46 bytes

::[0,-1*a+b,2|[a,b|?d*q';`]q=q*-1┘a=a+1┘b=b-1?

Como funciona:

::           Read the negative and positive ints as a and b
[0,-1*a+b,2| FOR(c = 0; c < range(a, b); c+=2) {} This creates the proper amount of lines.
  [a,b|      For each line, loop from lower to upper
    ?d*q     Print the current point in the range, accounting for the sign-switch
     ';`     And suppress newlines. The ' and ` stops interpreting special QBIC commands.
  ]          NEXT line
  q=q*-1┘    Between the lines, flip the sign-flipper
  a=a+1┘     Increase the lower bound
  b=b-1?     Decrease the upper bound, print a newline
             The outermost FOR loop is auto-closed at EOF.

Felizmente, ao imprimir um número, o QBasic adiciona automaticamente o preenchimento necessário.

steenbergh
fonte
Outro caso de encontrar o idioma certo para fazer o trabalho :) +1
ElPedro 10/10
+1 Existe um compilador online para o QBIC disponível? Gostaria de vê-lo em ação em todos os casos de teste (embora eu acredite na sua palavra, ele alinha automaticamente tudo). Na primeira vez em que estou vendo o QBIC, duas perguntas ao ler sua explicação: Se eu li corretamente q, o valor padrão começa em 1? Todos os valores no QBIC começam em 1 ou há algo que estou faltando aqui? E qual é o d/ onde drepresenta? Ou do número atual no loop e o ?simplesmente um delimitado necessário no código do loop for (em vez de ?ser o número atual, que foi como eu o li inicialmente)?
Kevin Cruijssen
11
@KevinCruijssen Nenhum intérprete online ainda, desculpe. Estou trabalhando em um, mas é mais difícil do que você pensa que o QBasic 4.5 seja executado no seu navegador :-). qcomeça em 1. Todas as letras minúsculas são vars numéricos e as letras q-zsão inicializadas em 1-10. E vários comandos atribuem números automaticamente na ordem em que são encontrados no código. dé de fato o iterador no loop FOR interno. Para mais detalhes, consulte também a vitrine - ou esta
steenbergh
3

Perl 6 , 146 bytes

{$_:=(($^a..$^b).List,{-«.[1..*-2]}...3>*).List;$/:=[map {"%{.max}s"},roundrobin($_)».chars];map {join ',',map {$^a.fmt: $^b},flat($_ Z $/)},$_}

Tente

Produz uma sequência de strings

Expandido:

{  # bare block lambda with placeholder parameters 「$a」 and 「$b」

  # generate the data
  $_ := (                 # bind to $_ so it isn't itemized

                          # produce a sequence
    ( $^a .. $^b ).List,  # seed the sequence, and declare parameters
    { \ .[ 1 .. *-2 ] } # get all the values except the ends and negate
    ...                   # keep producing until
    3 > *                 # the length of the produced list is less than 3

  ).List;                 # turn the Seq into a List


  # generate the fmt arguments
  $/ := [                 # bind an array to 「$/」 so it isn't a Seq
    map
      { "%{ .max }s" },   # turn into a 「.fmt」 argument ("%2s")

      roundrobin($_)\     # turn the "matrix" 90 degrees
      ».chars             # get the string length of each number
  ];


  # combine them together
  map
    {
      join ',',
        map
          { $^a.fmt: $^b }, # pad each value out
          flat(
            $_ Z $/         # zip the individual number and it's associated fmt
          )
    },
    $_                      # map over the data generated earlier
}
Brad Gilbert b2gills
fonte
3

PHP 7.1, 277 bytes

for([,$a,$b]=$argv,$c=count($r=range($a,$b))/2;$c-->0;$r=range(-$r[1],-$r[count($r)-2]))$y[]=array_map(strlen,$x[]=$r);for($i=0;$i<count($y[0]);$i++)$z[$i]=max(array_column($y,$i));foreach($x as $g){$o=[];foreach($g as$k=>$v)$o[]=sprintf("%$z[$k]d",$v);echo join(",",$o)."\n";}

Intérprete Online

Jörg Hülsermann
fonte
2
Você pode vincular um intérprete online?
betseg
@betseg Feito e perceber que a minha versão não funcionou corretamente
Jörg Hülsermann
oh gawd apenas usando php em codegolf.se. TENHA TODOS OS VOTOS.
Evan Carroll
3

Aplicativo de console C # 196 bytes

static void p(int a,int b){string S="",d ="";int c=-1;for(int i=b;i >=a;i--){c=c==1?c=-1:c=1;for(int j = a;j<=i;j++){S=j!=a?",":S="";d=d+S+(j*c);}d+= "\r\n";a++;}Console.Write(d);Console.Read();}
AkhilKumar
fonte
Bem-vindo ao PPCG! Você pode recuar seu código usando 4 espaços (veja minha edição). No código de golfe, você precisa ter a menor contagem de bytes (a quantidade de bytes em seu código) possível - isso significa nomes de variáveis ​​mais curtos e remoção de espaços. Além disso, você deve colocar sua contagem de bytes no cabeçalho assim que terminar.
clismique
2

Javascript - 196 185 176 bytes

function f(i,j){l=[];for(x=i;x<j+1;x++)l.push(x);h='<table>';while(l.length>0){h+='<tr>';for(x=0;x<l.length;x++){h+='<td align=right>'+l[x];l[x]*=-1}l.shift();l.pop()}return h}

Eu não estou realmente atualizado com algumas das técnicas mais recentes de JS, então isso provavelmente poderia ser muito melhor.

Simplesmente cria uma boa tabela HTML antiquada, sem largura definida para as células, para que a primeira linha padronize a largura de cada entrada, mantendo o espaçamento ideal. Também (ab) usa o "recurso" do HTML de não exigir tags de fechamento se uma nova tag de abertura aparecer primeiro.

<script>
function f(i,j){l=[];for(x=i;x<j+1;x++)l.push(x);h='<table>';while(l.length>0){h+='<tr>';for(x=0;x<l.length;x++){h+='<td align=right>'+l[x];l[x]*=-1}l.shift();l.pop()}return h}
document.write(f(-1,1))
</script>

<script>
function f(i,j){l=[];for(x=i;x<j+1;x++)l.push(x);h='<table>';while(l.length>0){h+='<tr>';for(x=0;x<l.length;x++){h+='<td align=right>'+l[x];l[x]*=-1}l.shift();l.pop()}return h}
document.write(f(-3,6))
</script>

<script>
function f(i,j){l=[];for(x=i;x<j+1;x++)l.push(x);h='<table>';while(l.length>0){h+='<tr>';for(x=0;x<l.length;x++){h+='<td align=right>'+l[x];l[x]*=-1}h+='</tr>';l.shift();l.pop()}return h}
document.write(f(-2,8))
</script>

<script>
function f(i,j){l=[];for(x=i;x<j+1;x++)l.push(x);h='<table>';while(l.length>0){h+='<tr>';for(x=0;x<l.length;x++){h+='<td align=right>'+l[x];l[x]*=-1}h+='</tr>';l.shift();l.pop()}return h}
document.write(f(-15,8))
</script>

<script>
function f(i,j){l=[];for(x=i;x<j+1;x++)l.push(x);h='<table>';while(l.length>0){h+='<tr>';for(x=0;x<l.length;x++){h+='<td align=right>'+l[x];l[x]*=-1}h+='</tr>';l.shift();l.pop()}return h}
document.write(f(-3,15))
</script>

<script>
function f(i,j){l=[];for(x=i;x<j+1;x++)l.push(x);h='<table>';while(l.length>0){h+='<tr>';for(x=0;x<l.length;x++){h+='<td align=right>'+l[x];l[x]*=-1}h+='</tr>';l.shift();l.pop()}return h}
document.write(f(-12,12))
</script>

ElPedro
fonte
2

Python 2 - 208 bytes

Experimente online

d,u=input()
l=[x for x in range(d,u+1)]
M=map(lambda x:~9<x<21-u-u%2and 2or 3,l)
M[-1]-=1
M[-2]-=1
while len(l)>0:print','.join(map(lambda i:('%'+'%d'%M[i]+'d')%l[i],range(len(l))));l=map(lambda e:-e,l[1:-1])

Cria uma matriz de valores de preenchimento e, em seguida, usa-a para construir as strings formatadas necessárias

Explicação:

d,u=input()
# create list of all values
l=[x for x in range(d,u+1)]
# create array of padding values
# by default, padding 2 used for numbers in [-9;9] and 3 for all other (limited with -99 and 99)
# but contracting list moves numbers larger that 9 under ones, that are <=9
# so upper limit of padding 2 is limited with 21-u-u%2
# (~9 == -10)
M=map(lambda x:~9<x<21-u-u%2and 2or 3,l)
# last two elements should have lower padding as there won't be any other numbers it their columns
M[-1]-=1
M[-2]-=1
while len(l)>0:
    # create formatted string for every element in l
    # join all strings with comma
    print','.join(map(lambda i:('%'+'%d'%M[i]+'d')%l[i],range(len(l))))
    # get slice without first and last element and change sigh
    l=map(lambda e:-e,l[1:-1])
Gambá morto
fonte
Olá, seja bem-vindo ao PPCG! Infelizmente, atualmente não está correto. Você adicionou a mesma margem a todos os números, além de adicionar espaços como delimitador. O desafio foi usar um delimitador de sua escolha (exceto espaços em branco), mas o mais importante: tenha o alinhamento com base no número com a maior largura nessa coluna específica. Por favor, consulte a seção Importante do desafio, bem como os casos de teste como exemplo. Você não é o primeiro a fazê-lo incorretamente, mas atualmente não é válido com o desafio especificado. Sinta-se livre para apagar, modificar em conformidade com as regras, e recuperar a sua resposta
Kevin Cruijssen
2
@KevinCruijssen Obrigado por apontar isso! Eu atualizei minha resposta
Dead Possum
11
Isso realmente parece muito melhor! Apenas uma regra pequeno você esqueceu: " A saída também pode conter um delimitador de sua própria escolha (exceto para espaços em branco e novas linhas) : Ie ,e ;e |são todos delimitadores aceitáveis. " Atualmente você usar um espaço como delimitador. Mas a principal dificuldade da largura foi realmente resolvida, então você está indo muito bem até agora! Apenas esta pequena mudança, e então isso deve ser feito. :)
Kevin Cruijssen
11
Perfeito! +1 Bom trabalho corrigindo tudo. E mais uma vez bem-vindo ao PPCG. (Btw, é o espaço aqui: %l[i], rangenecessário?)
Kevin Cruijssen
2
@KevinCruijssen espero ficar por PPCG por algum tempo, parece muito interessante (não, salvou mais um byte)
Morto Possum