Giustificare e sillabare completamente un blocco di testo


26
Given  a width  and  a block  of
text containing possible hyphen-
ation points,  format it  fully-
justified (in monospace).

Completamente giustificato significa che è allineato a sinistra e a destra e si ottiene aumentando la spaziatura tra le parole fino a quando ogni linea si adatta.

Relazionato:

Ingresso

Puoi ricevere input in qualsiasi formato tu voglia. Ti verrà dato:

  • Una larghezza target (in caratteri), nell'intervallo 5-100 (incluso);
  • Un blocco di testo contenente eventualmente parole sillabate. Potrebbe trattarsi di una stringa separata dallo spazio, una matrice di parole o una matrice di matrici di frammenti di parole (o qualsiasi altra rappresentazione di dati desiderata).

Un input tipico potrebbe essere:

Width: 25
Text:  There's no bu-si-ne-ss lik-e s-h-o-w busine-ss, n-o bus-iness I know.

Dove i trattini indicano possibili punti di sillabazione e gli spazi indicano i confini delle parole. Una possibile rappresentazione alternativa del testo:

[["There's"], ["no"], ["bu", "si", "ne", "ss"], ["lik", "e"], (etc.)]

Produzione

Il testo di input con spazi aggiunti tra le parole, le nuove linee alla larghezza della colonna e i punti di sillabazione scelti per giustificarlo completamente alla larghezza della colonna. Per le funzioni, è possibile restituire una matrice di stringhe (una per ogni riga) anziché utilizzare la separazione newline.

Un possibile output per l'ingresso sopra potrebbe essere:

There's no  business like
show  business,  no  bus-
iness I know.

Si noti che tutti i trattini sono stati rimossi tranne quello nel "bus-iness" finale, che viene mantenuto per mostrare che la parola si sposta sulla riga successiva ed è stata scelta per garantire che la seconda riga contenga il maggior numero di testo possibile.

Regole

  • All'interno di ogni riga, il numero di spazi tra le parole non può variare di più di 1, ma dove si inseriscono gli spazi extra dipende da te:

    hello hi foo     bar    <-- not permitted (1,1,5)
    hello  hi foo    bar    <-- not permitted (2,1,4)
    hello  hi  foo   bar    <-- OK (2,2,3)
    hello  hi   foo  bar    <-- OK (2,3,2)
    hello   hi  foo  bar    <-- OK (3,2,2)
    
  • Nessuna linea può iniziare o terminare con spazi (tranne l'ultima riga, che può terminare con spazi).

  • L'ultima riga deve essere lasciata giustificata, contenente spazi singoli tra ogni parola. Se lo si desidera, può essere seguito da uno spazio bianco arbitrario / una nuova riga, ma ciò non è necessario.

  • Le parole saranno costituite da AZ, az, 0-9 e punteggiatura semplice ( .,'()&)

  • Si può presumere che nessun frammento di parole sarà più lungo della larghezza del bersaglio e che sarà sempre possibile riempire le linee secondo le regole (cioè ci saranno almeno 2 frammenti di parole su ogni riga o 1 frammento di parole che riempie la riga perfettamente)

  • È necessario scegliere i punti di sillabazione che massimizzano il numero di caratteri di parole nelle righe precedenti (ovvero le parole devono essere consumate avidamente dalle righe), ad esempio:

    This is an input stri-ng with hyph-en-at-ion poi-nts.
    
    This     is     an     input    stri-      <-- not permitted
    ng with hyphenation points.
    
    This  is an  input string  with hyph-      <-- not permitted
    enation points.
    
    This is an input  string with hyphen-      <-- OK
    ation points.
    
  • Vince il codice più breve in byte

Esempi

Width: 20
Text:  The q-uick brown fox ju-mp-s ove-r t-h-e lazy dog.

The quick  brown fox
jumps over the  lazy
dog.

Width: 32
Text: Given a width and a block of text cont-ain-ing pos-sible hyphen-ation points, for-mat it ful-ly-just-ified (in mono-space).

Given  a width  and  a block  of
text containing possible hyphen-
ation points,  format it  fully-
justified (in monospace).

Width: 80
Text:  Pro-gram-ming Puz-zles & Code Golf is a ques-tion and ans-wer site for pro-gram-ming puz-zle enth-usi-asts and code golf-ers. It's built and run by you as part of the St-ack Exch-ange net-work of Q&A sites. With your help, we're work-ing to-g-et-her to build a lib-rary of pro-gram-ming puz-zles and their sol-ut-ions.

Programming Puzzles &  Code Golf  is a question and answer  site for programming
puzzle enthusiasts  and code golfers.  It's built and run  by you as part of the
Stack Exchange network  of Q&A sites. With your help,  we're working together to
build a library of programming puzzles and their solutions.

Width: 20
Text:  Pro-gram-ming Puz-zles & Code Golf is a ques-tion and ans-wer site for pro-gram-ming puz-zle enth-usi-asts and code golf-ers. It's built and run by you as part of the St-ack Exch-ange net-work of Q&A sites. With your help, we're work-ing to-g-et-her to build a lib-rary of pro-gram-ming puz-zles and their sol-ut-ions.

Programming  Puzzles
&  Code  Golf  is  a
question and  answer
site for programming
puzzle   enthusiasts
and  code   golfers.
It's  built  and run
by  you  as  part of
the  Stack  Exchange
network    of    Q&A
sites.   With   your
help,  we're working
together to  build a
library of  program-
ming   puzzles   and
their solutions.

Width: 5
Text:  a b c d e f g h i j k l mm nn oo p-p qq rr ss t u vv ww x yy z

a b c
d e f
g h i
j k l
mm nn
oo pp
qq rr
ss  t
u  vv
ww  x
yy z

Width: 10
Text:  It's the bl-ack be-ast of Araghhhhh-hhh-h-hhh-h-h-h-hh!

It's   the
black  be-
ast     of
Araghhhhh-
hhhhhhhhh-
hhh!

Sì, finalmente un'altra sfida tipografica (basata sul testo) :-)
ETHproductions

1
@ Adám sì ai builtin: non ci sono restrizioni di codice e vince il codice più corto. Anche se, naturalmente, potrebbe essere una risposta noiosa! Per quanto riguarda le biblioteche, puoi fintanto che la biblioteca è liberamente disponibile e contrassegni la tua risposta come "lingua + biblioteca". Anche la versione della biblioteca deve precedere questa sfida.
Dave,

1
Nel caso in cui una riga possa terminare con un trattino o un singolo carattere, ad esempio anybod-ycon larghezza 7, possiamo scegliere di produrre anybodyo anybod-\ny?
darrylyeo,

1
@JonathanAllan sì; scusa, lo aggiusterò
Dave, il

3
@darrylyeo no in questo caso devi scrivere l'intera parola, poiché deve avere avidamente il maggior numero possibile di caratteri di parola su ogni riga.
Dave,

Risposte:


7

JavaScript (ES6), 218 byte

w=>s=>s.map((c,i)=>c.map((p,j)=>(k+p)[l="length"]-w-(b=!i|j>0)+(j<c[l]-1)<0?k+=b?p:" "+p:(Array(w-k[l]-b).fill(h=k.split` `).map((_,i)=>h[i%(h[l]-1)]+=" "),o.push(h.join` `+(b?"-":"")),k=p)),o=[],k="")&&o.join`
`+`
`+k

Accetta argomenti nella sintassi del curry ( f(width)(text)) e l'inserimento del testo è nel formato a doppio array descritto nella sfida. Le stringhe vengono convertite in quel formato tramite .split` `.map(a=>a.split`-`)). Inoltre, le newline sono letterali newline all'interno di stringhe di template.

Non golfato e riorganizzato

width=>string=> {
    out=[];
    line="";
    string.map((word,i)=> {
        word.map((part,j)=> {

            noSpaceBefore = i==0 || j>0;
            if ((line+part).length - width - noSpaceBefore + (j<word.length-1) < 0) {
                line += noSpaceBefore ? part : " "+part;
            }
            else {
                words=line.split` `;
                Array(width - line.length - noSpaceBefore).fill()
                    .map((_,i) => words[i % (words.length-1)] += " ");
                out.push(words.join(" ") + (noSpaceBefore? "-" : ""));
                line=part;
            }
        });
    });
    return out.join("\n") + "\n"+line
}

L'idea qui era di passare attraverso ogni parte dell'intera stringa e costruire ogni riga una parte alla volta. Una volta che una linea è stata completata, aumenta la spaziatura delle parole da sinistra a destra fino a posizionare tutti gli spazi extra.

Test dello snippet

f=
w=>s=>s.map((c,i)=>c.map((p,j)=>(k+p)[l="length"]-w-(b=!i|j>0)+(j<c[l]-1)<0?k+=b?p:" "+p:(Array(w-k[l]-b).fill(h=k.split` `).map((_,i)=>h[i%(h[l]-1)]+=" "),o.push(h.join` `+(b?"-":"")),k=p)),o=[],k="")&&o.join`
`+`
`+k
<style>*{font-family:Consolas,monospace;}</style>
<div oninput="O.innerHTML=f(+W.value)(S.value.split` `.map(a=>a.split`-`))">
Width: <input type="number" size="3" min="5" max="100" id="W">
Tests: <select id="T" style="width:20em" oninput="let x=T.value.indexOf(','),s=T.value;W.value=s.slice(0,x);S.value=s.slice(x+2)"><option></option><option>20, The q-uick brown fox ju-mp-s ove-r t-h-e lazy dog.</option><option>32, Given a width and a block of text cont-ain-ing pos-sible hyphen-ation points, for-mat it ful-ly-just-ified (in mono-space).</option><option>80, Pro-gram-ming Puz-zles & Code Golf is a ques-tion and ans-wer site for pro-gram-ming puz-zle enth-usi-asts and code golf-ers. It's built and run by you as part of the St-ack Exch-ange net-work of Q&A sites. With your help, we're work-ing to-g-et-her to build a lib-rary of pro-gram-ming puz-zles and their sol-ut-ions.</option><option>20, Pro-gram-ming Puz-zles & Code Golf is a ques-tion and ans-wer site for pro-gram-ming puz-zle enth-usi-asts and code golf-ers. It's built and run by you as part of the St-ack Exch-ange net-work of Q&A sites. With your help, we're work-ing to-g-et-her to build a lib-rary of pro-gram-ming puz-zles and their sol-ut-ions.</option><option>5, a b c d e f g h i j k l mm nn oo p-p qq rr ss t u vv ww x yy z</option><option>10, It's the bl-ack be-ast of Araghhhhh-hhh-h-hhh-h-h-h-hh</option></select><br>
Text: &nbsp;<textarea id="S" cols="55" rows="4"></textarea>
</div>
<pre id="O" style="border: 1px solid black;display:inline-block;"></pre>


8

GNU sed -r, 621 byte

Accetta l'input come due righe: la larghezza come primo numero unario e la seconda stringa.

Sono certo che questo potrebbe essere giocato a golf molto di più, ma ho già scaricato troppo tempo.

x;N
G
s/\n/!@/
:
/@\n/bZ
s/-!(.*)@ /\1 !@/
s/!(.*[- ])(@.*1)$/\1!\2/
s/@(.)(.*)1$/\1@\2/
s/-!(.*-)(@.*)\n$/\1!\2\n1/
s/(\n!@) /\1/
s/-!(.* )(@.*)\n$/\1!\2\n1/
s/-!(.*-)(@.*1)$/\1!\21/
s/!(.*)-@([^ ]) /\1\2!@ /
t
s/ !@(.*)\n$/\n!@\1#/
s/!(.*-)@(.*)\n$/\1\n!@\2#/
s/!(.*)(@ | @)(.*)\n$/\1\n!@\3#/
s/-!(.*[^-])@([^ ]) (.*)\n$/\1\2\n!@\3#/
s/!(.+)@([^ ].*)\n$/\n!@\1\2#/
/#|!@.*\n$/{s/#|\n$//;G;b}
:Z
s/-?!|@.*//g
s/ \n/\n/g
s/^/%/
:B
G
/%.*\n.+\n/!bQ
:C
s/%([^\n])(.*)1$/\1%\2/
tC
s/([^\n]+)%\n/%\1\n/
:D
s/%([^ \n]* )(.*)1$/\1 %\2/
tD
s/(^|\n)([^\n]+)%(.*1)$/\1%\2\3/
tD
s/%([^\n]*)\n(.*)\n$/\1\n%\2/
tB
:Q
s/%(.*)\n1*$/\1/

Provalo online!

Spiegazione

Il programma funziona in due fasi: 1. Dividi e 2. Giustifica. Per quanto sotto, supponiamo che il nostro input sia:

111111111111
I re-mem-ber a time of cha-os, ru-ined dreams, this was-ted land.

Impostare

Innanzitutto leggiamo l'input, spostando la prima riga (la larghezza come numero unario) nello spazio di attesa ( x), quindi aggiungendo la riga successiva ( N) e quindi una copia della larghezza dallo spazio di attesa ( G) allo spazio del motivo. Da quando Nci ha lasciato un vantaggio \nlo sostituiamo con !@, che useremo come cursori nella Fase 1.

x;N
G
s/\n/!@/

Ora il contenuto dello spazio di attesa è 1111111111111(e non cambierà d'ora in poi) e lo spazio del motivo è (nel formato del lcomando "stampa inequivocabilmente" di sed ):

!@I re-mem-ber a time of cha-os, ru-ined dreams, this was-ted land.\n111111111111$

Fase 1

Nella fase 1, il @cursore principale avanza di un carattere alla volta e per ogni carattere a 1viene rimosso dal "contatore" alla fine dello spazio del motivo. In altre parole, @foo\n111$, f@oo\n11$, fo@o\n1$, etc.

Il !cursore si sposta dietro il @cursore, segnando i punti che potremmo rompere se il contatore raggiunge 0 nel mezzo della linea. Un paio di round sarebbe simile a questo:

!@I re-mem-ber a time of cha-os, ru-ined dreams, this was-ted land.\n111111111111$
!I@ re-mem-ber a time of cha-os, ru-ined dreams, this was-ted land.\n11111111111$
!I @re-mem-ber a time of cha-os, ru-ined dreams, this was-ted land.\n1111111111$

Qui c'è un modello che riconosciamo: uno spazio immediatamente seguito dal @cursore. Poiché il contatore è maggiore di 0, avanziamo il marcatore di interruzione, quindi continuiamo a far avanzare il cursore principale:

I !@re-mem-ber a time of cha-os, ru-ined dreams, this was-ted land.\n1111111111$
I !r@e-mem-ber a time of cha-os, ru-ined dreams, this was-ted land.\n111111111$
I !re@-mem-ber a time of cha-os, ru-ined dreams, this was-ted land.\n11111111$
I !re-@mem-ber a time of cha-os, ru-ined dreams, this was-ted land.\n1111111$

Ecco un altro modello:, -@e abbiamo ancora 7 nel contatore, quindi avanziamo di nuovo il cursore di interruzione e continuiamo ad avanzare:

I re-!mem-@ber a time of cha-os, ru-ined dreams, this was-ted land.\n111$

Ecco un modello diverso: un trattino che precede immediatamente il cursore di interruzione e un altro che precede il cursore principale. Rimuoviamo il primo trattino, avanziamo il cursore di interruzione e, poiché abbiamo rimosso un carattere, aggiungiamo 1 al contatore.

I remem-!@ber a time of cha-os, ru-ined dreams, this was-ted land.\n1111$

Continuiamo a far avanzare il cursore principale:

I remem-!ber@ a time of cha-os, ru-ined dreams, this was-ted land.\n1$

Simile a prima, ma questa volta il cursore principale precede uno spazio anziché seguire un trattino. Rimuoviamo il trattino, ma poiché stiamo avanzando anche il cursore principale, non incrementiamo né diminuiamo il contatore.

I remember !@a time of cha-os, ru-ined dreams, this was-ted land.\n1$
I remember !a@ time of cha-os, ru-ined dreams, this was-ted land.\n$

Finalmente, il nostro contatore ha raggiunto lo zero. Poiché il carattere dopo il cursore principale è uno spazio, inseriamo una nuova riga e inseriamo immediatamente entrambi i cursori. Quindi riempiamo il contatore ( G) e ricominciamo.

I remember a\n!@ time of cha-os, ru-ined dreams, this was-ted land.\n111111111111$

La fase 1 continua, facendo avanzare i cursori e abbinando vari schemi, fino a quando il @cursore non raggiunge la fine della stringa.

# Phase 1
:
  # End of string; branch to :Z (end of phase 1)
  /@\n/bZ

  # Match -!.*@_
  s/-!(.*)@ /\1 !@/

  # Match [-_]@ and >0
  s/!(.*[- ])(@.*1)$/\1!\2/

  # Advance cursor
  s/@(.)(.*)1$/\1@\2/

  # Match -!.*-@ and 0; add 1
  s/-!(.*-)(@.*)\n$/\1!\2\n1/

  # Match \n!@_
  s/(\n!@) /\1/

  # Match -!.*_@ and 0; add 1
  s/-!(.* )(@.*)\n$/\1!\2\n1/

  # Match -!.*-@ and >0; add 1
  s/-!(.*-)(@.*1)$/\1!\21/

  # Match -@[^_]_
  s/!(.*)-@([^ ]) /\1\2!@ /

  # If there were any matches, branch to `:`
  t

  # Match _!@ and 0
  s/ !@(.*)\n$/\n!@\1#/

  # Match -@ and 0
  s/!(.*-)@(.*)\n$/\1\n!@\2#/

  # Match @_|_@ and 0
  s/!(.*)(@ | @)(.*)\n$/\1\n!@\3#/

  # Match -!.*[^-]@[^_]_ and 0
  s/-!(.*[^-])@([^ ]) (.*)\n$/\1\2\n!@\3#/

  # Match !.+@[^_] and 0
  s/!(.+)@([^ ].*)\n$/\n!@\1\2#/

  # Match marked line (#) or !@ and 0
  /#|!@.*\n$/{
    # Remove mark; append width and branch to `:`
    s/#|\n$//
    G
    b
  }

:Z

# Cleanup
s/-?!|@.*//g
s/ \n/\n/g

Alla fine della Fase 1, il nostro spazio del modello è simile al seguente:

I remember a\ntime of cha-\nos, ruined\ndreams, this\nwasted land.

O:

I remember a
time of cha-
os, ruined
dreams, this
wasted land.

Fase 2

Nella Fase 2 usiamo %come cursore e usiamo il contatore in modo simile, iniziando così:

%I remember a\ntime of cha-\nos, ruined\ndreams, this\nwasted land.\n111111111111$

Innanzitutto, contiamo i caratteri sulla prima riga facendo avanzare il cursore e rimuovendo 1s dal contatore, dopo di che abbiamo;

I remember a%\ntime of cha-\nos, ruined\ndreams, this\nwasted land.\n$

Poiché il contatore è 0, non facciamo nient'altro su questa linea. La seconda riga ha anche lo stesso numero di caratteri del contatore, quindi passiamo alla terza riga:

I remember a\ntime of cha-\nos, ruined%\ndreams, this\nwasted land.\n11$

Il contatore è maggiore di 0, quindi spostiamo il cursore all'inizio della riga. Quindi troviamo la prima serie di spazi e aggiungiamo uno spazio, diminuendo il contatore.

I remember a\ntime of cha-\nos, % ruined\ndreams, this\nwasted land.\n1$

Il contatore è maggiore di 0; poiché il cursore si trova già nell'ultima (unica) sequenza di spazi sulla linea, lo spostiamo di nuovo all'inizio della linea e lo facciamo di nuovo:

I remember a\ntime of cha-\nos,  % ruined\ndreams, this\nwasted land.\n$

Ora il contatore è 0, quindi spostiamo il cursore all'inizio della riga successiva. Lo ripetiamo per ogni riga tranne l'ultima. Questa è la fine della fase 2 e la fine del programma! Il risultato finale è:

I remember a
time of cha-
os,   ruined
dreams, this
wasted land.
# Phase 2
# Insert cursor
s/^/%/
:B
  # Append counter from hold space
  G
  # This is the last line; branch to :Q (end of phase 1)
  /%.*\n.+\n/!bQ

  :C
    # Count characters
    s/%([^\n])(.*)1$/\1%\2/
    tC

  # Move cursor to beginning of line
  s/([^\n]+)%\n/%\1\n/

  :D
    # Add one to each space on the line as long as counter is >0
    s/%([^ \n]* )(.*)1$/\1 %\2/
    tD

    # Counter is still >0; go back to beginning of line
    s/(^|\n)([^\n]+)%(.*1)$/\1%\2\3/
    tD

    # Counter is 0; move cursor to next line and branch to :B
    s/%([^\n]*)\n(.*)\n$/\1\n%\2/
    tB

:Q

# Remove cursor, any remaining 1s
s/%(.*)\n1*$/\1/

Questo è incredibile, ma quando lo eseguo usando gsed (GNU sed) 4.4ottengo gsed: -e expression #1, char 16: ":" lacks a label. Puoi aggiungere una nota su come la stai invocando? (Sto usando printf "%s\n%s" "$1" "$2" | gsed -r '<code here>';)
Dave,

@Dave Funziona per me in GNU sed 4.2. Ecco un riassunto : gist.github.com/jrunning/91a7584d95fe10ef6b036d1c82bd385c Nota che la pagina sed di TiO non sembra rispettare la -rbandiera, motivo per cui il link TiO sopra va alla pagina bash.
Giordania,

Ah, non avevo notato il link TiO. Questo farà per me; avere un +1! Nell'ultimo esempio ci sono 2 piccoli errori (quello della "bestia nera"): stampa la penultima riga un carattere corto e manca il finale !(anche se da quando mi sono perso !dalla lista di possibili personaggi speciali, io non lo terrà contro).
Dave,

5

JavaScript (ES6), 147 byte

Accetta input come (width)(text).

w=>F=(s,p=S=' ')=>(g=([c,...b],o='',h=c=='-')=>c?o[w-1]?c==S&&o+`
`+F(b):o[w+~h]?o+c+`
`+F(b):c>S?g(b,h?o:o+c):g(b,o+p)||g(b,o+p+c):o)(s)||F(s,p+S)

Provalo online!

Commentate

w =>                              // w = requested width
  F = (                           // F is a recursive function taking:
    s,                            //   s = either the input string (first iteration) or an
                                  //       array of remaining characters (next iterations)
    p =                           //   p = current space padding
    S = ' '                       //   S = space character
  ) => (                          //
    g = (                         // g is a recursive function taking:
      [c,                         //   c   = next character
          ...b],                  //   b[] = array of remaining characters
      o = '',                     //   o   = output for the current line
      h = c == '-'                //   h   = flag set if c is a hyphen
    ) =>                          //
      c ?                         // if c is defined:
        o[w - 1] ?                //   if the line is full:
          c == S &&               //     fail if c is not a space
          o + `\n` + F(b)         //     otherwise, append o + a linefeed and process the
                                  //     next line
        :                         //   else:
          o[w + ~h] ?             //     if this is the last character and c is a hyphen:
            o + c + `\n` + F(b)   //       append o + c + a linefeed and process the next
                                  //       line
          :                       //     else, we process the next character:
            c > S ?               //       if c is not a space:
              g(b, h ? o : o + c) //         append c if it's not a hyphen
            :                     //       else:
              g(b, o + p) ||      //         append either the current space padding
              g(b, o + p + c)     //         or the current padding and one extra space
      :                           // else:
        o                         //   success: return o
  )(s)                            // initial call to g() with s
  || F(s, p + S)                  // in case of failure, try again with a larger padding

4

APL (Dyalog Unicode) , 129 123 121 118 111 109 107 104 100 95 byte SBCS

{⊃⌽m←⍺≥-⌿c⍪+\⊢c' -'∘.≠⍵:⊂⍵/⍨⊢⌿c⋄(⊂∊ll[(⍺-≢l)⍴⍸' '=l],←⊃0l←⍵/⍨n×⊣⌿c⊖⍨1n),⍺∇⍵/⍨~n←⌽∨\⌽m>×⌿c}

Provalo online!



1

Python 2 , 343 byte

W,T=input()
T+=' '
L,l=[],len
while T:
 p,r=0,''
 for i in range(l(T)):
  s=T[:i].replace('-','')
  if'-'==T[i]:s+='-'
  if T[i]in' -'and W-l(s)>=0:p,r=i,s
 R=r.split()
 if R:
  d,k=W-l(''.join(R)),0
  for j in range(d):
   R[k]+=' '
   k+=1
   if k==l(R)-1:k=0
  L+=[''.join(R)]
  T=T[p+1:]
print'\n'.join(L[:-1])
print' '.join(L[-1].split())

Provalo online!

The  input  is a block of text
containing possibly hyphenated
words.  For  each space/hyphen
position  p  the code computes
l(p)  the  length  of the line
induced  by  slipping the text
to this space/hyphen. Then the
code choses the position p for
which  the  length l(p) is the
closest  to  the given width W
(and  l(p)<=W).  If l(p)<W the
code  adds spaces  fairly  in-
between  the  words to achieve
the length W.

Sebbene l'input possa essere nel formato che preferisci, dovrebbe comunque provenire da STDIN o da parametri. Vedere i valori predefiniti per I / O . Generalmente non permettiamo che "input" provenga da variabili preassegnate.
mbomb007,

Puoi salvare un byte facendo print'\n'.join(L[:-1])invece difor e in L[:-1]:print e
mbomb007 il

@ mbomb007 ok sì Farò le modifiche necessarie per rispettare l'I / O
mdahmoune
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.