Codici colore esadecimali migliori per Internet


46

Triplette esadecimali come #ffffff(bianco) o #3764ef(bluastro) vengono spesso utilizzate per indicare i colori RGB. Sono costituiti #da sei cifre esadecimali (0-f) o talvolta da tre cifre in cui si ottiene il colore reale raddoppiando ciascuna cifra. Ad esempio, #fffè #ffffffed #1a8è #11aa88.

Purtroppo, quella stenografia a tre cifre era la più golfistica che Internet potesse offrire, fino ad ora .

Scrivi un programma o una funzione che accetta una stringa da 1 a 7 caratteri:

  • Il primo personaggio sarà sempre #.
  • Gli altri personaggi saranno sempre cifre esadecimali: 0123456789abcdef.

L'input è una forma abbreviata di una tripletta esadecimale (o la forma completa se sono dati 7 caratteri). È necessario emettere una tripletta esadecimale completa che espande la scorciatoia di input in base a questi schemi:

Input   -> Output
#       -> #000000    (black)
#U      -> #UUUUUU
#UV     -> #UVUVUV
#UVW    -> #UUVVWW    (usual 3-digit shorthand)
#UVWX   -> #UXVXWX
#UVWXY  -> #UVWXYY
#UVWXYZ -> #UVWXYZ    (not shorthand)

Ognuno di U, V, W, X, Y, e Zpuò essere qualsiasi cifra esadecimale. L'output è sempre di 7 caratteri.

Per esempio:

Input -> Output
# -> #000000
#0 -> #000000
#4 -> #444444
#f -> #ffffff
#a1 -> #a1a1a1
#0f -> #0f0f0f
#99 -> #999999
#1a8 -> #11aa88
#223 -> #222233
#fff -> #ffffff
#1230 -> #102030
#d767 -> #d77767
#bbb5 -> #b5b5b5
#aabbc -> #aabbcc
#00000 -> #000000
#3764e -> #3764ee
#3764ef -> #3764ef
#123456 -> #123456
#f8f8f8 -> #f8f8f8

Appunti

  • L'ingresso inizierà sempre con #e così pure l'uscita.

  • Puoi presumere che tutte le lettere di input siano minuscole ( abcdef) o maiuscole ( ABCDEF) come preferisci.

  • Le lettere nell'output possono essere in entrambi i casi come preferisci. Puoi anche mescolare i casi.

  • Alfa / trasparenza non sono trattati qui (sebbene esistano versioni esadecimali dei colori RGBA).

Vince il codice più breve in byte.


11
" Purtroppo, quella stenografia a tre cifre era la più golfistica che Internet potesse offrire, fino ad ora. " - Uh, non esattamente . HTML, 0 byte - funziona fuori dagli schemi
Bergi,

11
Il contrario di questo sarebbe anche una bella sfida
Beta Decay del

9
Non sono soddisfatto della #UVWXY -> #UVWXYYvoce perché consente una rappresentazione a valore singolo per il canale Blue, ma non esiste un'espressione simile per Red e Green (ad esempio se volevo #889071non posso abbreviare, ma #907188posso essere ... come #90718) gli altri funzionano tutti alla grande.
Draco18s,

3
@ Draco18s Lo adoro. Quello e il #UVWX -> #UXVXWX. E 'un tale incoerente e comportamenti arbitrari che è difficile credere che non ci sia un paio di browser in realtà attualmente attuarla.
xDaizu,

1
specifica CSS @xDaizu ha #RGBAe #RRGGBBAA, quindi # 1234 dovrebbe essere letto comergba(17, 34, 51, 0.25)
TSH

Risposte:


13

JavaScript, 86 82 77 byte

x=>([s,a=0,b=a,c,d,e,f]=x,f?x:e?x+e:[s,a,d||a,c?b:a,d||b,v=c||b,d||v].join``)

scopri che rimuovi ricorsivo salva 4 byte ...

idea da @Arnauld salva 4 byte, +1 byte in più


([s,a=0,b=a,c,d,e,f]=x)=>f?x:e?x+e:d?s+a+d+b+d+c+d:c?s+a+a+b+b+c+c:s+a+a+a+b+b+bper 80 byte
Luca,

@Luke Ho appena ricevutoReferenceError: x is not defined
TSH

6

Gelatina , 24 byte



x2
j0ị$
m0

0
Ḣ;LĿṁ6$$

Un programma completo (le righe vuote sono in realtà righe vuote).

Provalo online! o vedi una suite di test *

Come?

     - Link 1 (0 bytes), returns its input (e.g. "U" -> "U")
     - Link 2 (0 bytes), returns its input (e.g. "UV" -> "UV")
x2   - Link 3, doubles up (e.g. "UVW" -> "UUVVWW")
j0ị$ - Link 4, joins with final element (e.g. "UVWX" -> "UXVXWXX")
m0   - Link 5, reflects its input (e.g. "UVWXY" -> "UVWXYYXWVU")
     - Link 6 (0 bytes), returns its input (e.g. "UVWXYZ" -> "UVWXYX")
0    - Link 7, returns zero (link 7 is also link 0 since there are 7 links)
Ḣ;LĿṁ6$$ - Main link: string
Ḣ        - head (get the '#')
       $ - last two links as a monad:
   Ŀ     -   call link at index:
  L      -     length
      $  -   last two links as a monad:
    ṁ6   -     mould like 6 (e.g. "UVWXYYXWVU" -> "UVWXYY"
         -                    or  "UV" -> "UVUVUV")
 ;       - concatenate (prepend the '#' again)
         - implicit print

* il programma della suite di test ha dovuto essere modificato scambiando l'ordine di quelli che erano Main linke Link 7, mentre il piè di pagina diventava il Main Link. Inoltre, è #stato necessario sostituirlo manualmente, dal momento che il programma è diretto.



4

PHP 7.1, 88 byte

#<?for(;$i<6;)echo@$argn[_22222232532233423355224462[5*$i+++strlen($argn|aa)*.85]-1]?:0;

PHP 5, 90 88 byte

#<?for(;$i<6;)echo$argn[_10311001122011333002244012345[6*$i+++strlen($argn|aa)-8]+1]?:0;

Non ho idea di come si ottiene questa idea, ma funziona. Lavoro _21422112233122444113355123456[6*$i+++strlen($argn|aa)-8]?
Jörg Hülsermann,

1
potresti spiegare come funziona?
Brian H.

Questo è carino! Memorizza l'offset in $argnin 21422112233122444113355123456e seleziona quello corretto in base a strlen. aainserisce la stringa in almeno 2 caratteri. All'ingresso #non ci sono $argn[1]quindi ?:0uscite a 0. Questo funziona anche con on 0nella stringa. Una delle migliori risposte che abbia mai visto! Purtroppo non paga troppo (la risposta di Jörg è stata ridotta a 95).
Christoph,

1
Haha, questo è il miglior abuso delle stringhe automatiche di PHP che ho visto da un po '. +1
ETHproductions

1
@Christoph La seconda versione ha bisogno di una versione di PHP sotto 7.1 e di una versione di PHP sopra 5.6 Penso che aggiungere questo dovrebbe rendere questo più chiaro
Jörg Hülsermann

3

PHP, 95 93 89 87

<?=strtr(_1.intval([a6n,sot,c8c,lba,vf1,vf2][strlen($argn|aa)-2],33),_134256,$argn.=0);

Fondamentalmente la risposta di JörgHülsermann, ma mi sono scagliato molto, quindi ho deciso di pubblicarlo come una risposta separata. Considererei questa risposta come uno sforzo collettivo tra me e Jörg.

-4 bytes thanks to @JörgHülsermann
-1 bytes thanks to @JörgHülsermann's base 33 numbers

3

Python 3, 166 162 160 160 152 byte

import re
lambda x,d='(.)$',b=r'\1':re.sub(*[('$','0'*6),(d,b*6),('(..)$',b*3),('(\w)',b*2),('.'+'(.)'*4,r'#\1\4\2\4\3\4'),(d,b*2),('','')][len(x)-1],x)

len(x)-1Costruisco un elenco di tuple sostitutive regex per ogni modello, quindi estraggo la tupla in corrispondenza dell'indice , infine la suddivide ( *) negli argomenti di re.sub:

lambda x, d='(.)$', b=r'\1':   # lambda expression, save often used strings
  re.sub(   # regex replacement of:
         *  # expand what follows into arguments, i.e. f(*(1,2)) -> f(1,2)
         [  # list of replacement patterns:
            # 1 character: replace the end with 6 zeroes
            ('$', '0'*6),
            # 2 chars: repeat the last character 6 times
            (d, b*6),
            # 3 chars: repeat the two non-#s 3 times.
            ('(..)$', b*3),
            # 4 chars: replace every non-# with twice itself
            ('(\w)', b*2),
            # 5 chars: has to be somewhat verbose..
            ('.'+'(.)'*4, r'#\1\4\2\4\3\4'), 
            # 6 chars: repeat the last character
            (d, b*2),
            # 7 chars: complete already, replace nothing with nothing
            ('', '')
         ][len(x)-1], # select the element from the list that has the right length
        x)  # replace in argument x

salvato 8 byte memorizzando r'\1'(grazie, Gábor Fekete)


1
L'utilizzo r'\1'come parametro denominato non salverebbe alcuni byte?
Gábor Fekete,

1
Hai scritto o=r'\1'ma usa bnel tuo codice: D
Gábor Fekete

1
@ GáborFekete Whoops: D
L3viathan

3

Java 10, 228 227 224 182 byte

s->{var x="$1$1";int l=s.length();return l>6?s:l>5?s+s.charAt(5):l<2?"#000000":s.replaceAll(l>4?"(.)(.)(.)(.)$":l==3?"([^#]{2})":"([^#])",l>4?"$1$4$2$4$3$4":l>3?x:l>2?x+"$1":x+x+x);}

Provalo online.

Spiegazione:

s->{                      // Method with String as both parameter and return-type
  var x="$1$1";         //  Create a temp String to repeat a match
  int l=s.length();     //  Length of the String
  return l>6?           //  If the length is 7:
    s                   //   Return the input-String as is
   :l>5?                //  Else-if the length is 6:
    s+s.charAt(5)       //   Return the input-String with the last character repeated
   :l<2?                //  Else-if the length is 1:
    "#000000";          //   Simply return the literal String #000000
   :                    //  Else (the length is 2, 3, 4, or 5):
    s.replaceAll(       //   Return the input-String after a regex replace:
                        //    With as match:
     l>4?               //     If the length is 5:
      "(.)(.)(.)(.)$",  //      Use a match for pattern #(A)(B)(C)(D)
     :l==3?             //     Else-if the length is 3:
      "([^#]{2})"       //      Use a match for pattern #(AB)
     :                  //     Else (the length is 2 or 4):
      "([^#])",         //      Use a match for pattern #(A) or #(A)(B)(C)
                        //    And as replacement: 
     l>4?               //     If the length is 5:
      "$1$4$2$4$3$4"    //      Change #ABCD to #ADBDCD
     :l>3?              //     Else-if the length is 4:
      x                 //      Change #ABC to #AABBCC
     :l>2?              //     Else-if the length is 3:
      x+"$1"            //      Change #AB to #ABABAB
     :                  //     Else (the length is 2):
      x+x+x);}          //      Change #A to #AAAAAA

2

APL (Dyalog) , 43 byte

Richiede il ⎕IO←0valore predefinito su molti sistemi.

'#',{6⍴(≢⍵)⊃'0' ⍵(2/⍵)(∊⍵,¨⊃⌽⍵)(⍵,⌽⍵)⍵}1↓⍞

Provalo online!

1↓⍞ rilascia il primo personaggio (l'hash)

{ applica la seguente funzione anonima

(≢⍵)⊃ usa la lunghezza dell'argomento per scegliere uno dei seguenti sette valori:
  '0' a zero
   l'argomento
   l'argomento
  2/⍵ due ( 2) di ogni ( /) dell'argomento ( )
  ∊⍵,¨⊃⌽⍵ l' argomento flattened ( ) ( ) seguito ciascuno ( ) dal primo ( ) di l' argomento reversed ( ) ( )
  ⍵,⌽⍵ l'argomento ( ) prepended ,( ) all'argomento reversed ( ) ( )
   l'argomento

6⍴ ripetere gli elementi fino a quando non si raggiunge una lunghezza di sei

} fine della funzione anonima

'#', anteponi un hash a quello


2

Python 2, 167 165 byte

-2 byte grazie a Trelzevir

z=zip
lambda s:'#'+''.join([reduce(lambda x,y:x+y,c)for c in['0'*6,s[1:2]*6,z(s[1:2],s[2:3])*3,z(*z(s[1:2],s[2:3],s[3:4]))*2,z(s[1:4],s[-1]*3),s+s[-1],s][len(s)-1]])

Crea un elenco di stringhe e sceglie in base alla lunghezza della stringa.


1
È possibile salvare 2 byte utilizzando z=zip.
Trelzevir,

2

Sed, 119 (118 byte + -E)

s/#//
s/^$/0/
s/^.$/&&/
s/^..$/&&&/
s/^(.)(.)(.)$/\1\1\2\2\3\3/
s/^(.)(.)(.)(.)$/\1\4\2\4\3\4/
s/^....(.)$/&\1/
s/^/#/

Sostituzione del testo semplice.


2

PHP, 87 byte

usa i numeri di Base 35

<?=strtr(_2.intval([i4w,qdi,j1y,apg,ruu,ruv][strlen($argn|aa)-2],35),_234156,$argn.=0);

Provalo online!

o usa i numeri di Base 33

<?=strtr(_1.intval([a6n,sot,c8c,lba,vf1,vf2][strlen($argn|aa)-2],33),_134256,$argn.=0);

Provalo online!

PHP, 89 byte

<?=strtr(_1.[11111,21212,12233,42434,23455,23456][strlen($argn|aa)-2],_123456,$argn."0");

Provalo online!

intval(["8kn",gd8,"9ft",wqq,i3j,i3k][strlen($argn|aa)-2],36) + 3 byte usando una 36 Base

PHP, 102 byte

<?=strtr("01".substr("11111111112121212233424342345523456",5*strlen($argn)-5,5),str_split($argn."0"));

Provalo online!

PHP, 180 byte

<?=[str_pad("#",7,($l=strlen($p=substr($argn,1)))?$p:0),"#$p[0]$p[0]$p[1]$p[1]$p[2]$p[2]","#$p[0]$p[3]$p[1]$p[3]$p[2]$p[3]","#$p[0]$p[1]$p[2]$p[3]$p[4]$p[4]",$argn][($l>2)*($l-2)];

Provalo online!


1
Ho scaricato questa versione a 95 byte, ma ho pensato che fosse diverso, quindi l'ho pubblicato come risposta personale . Spero ti piaccia :)
Christoph,

2
@Christoph Al momento sono qui con la mia versione Provalo online!
Jörg Hülsermann,

2
Base 33 è un'idea fantastica! Sono stato seduto qui per un po 'ma non me ne sono accorto.
Christoph,

1
@Christoph è molto simile al tuo golf della mia prima versione. Non è stato facile
esprimere

1
@Christoph Thanks and the base 35 Number system è il mio approccio nel nostro lavoro di squadra
Jörg Hülsermann

2

Retina , 90 byte

#(..)$
#$1$1$1
#(.)(.)(.)$
#$1$1$2$2$3
#(.)(.)(.(.))$
#$1$4$2$4$3
#$
#0
+`#.{0,4}(.)$
$&$1

Provalo online! Include casi di test.

Spiegazione: La prima traduzione gestisce due cifre, la seconda una tre, la terza una quattro e la quarta zero. Tuttavia, né la seconda né la quarta traduzione ripetono (l'ultima) cifra, poiché ciò viene comunque fatto alla fine per coprire tutti i casi rimanenti.


2

Haskell , 130 127 122 118 109 95 byte ( dall'utente 1472751 )

y a|l<-[last a]=[y"0",y$a++a,a++a++a,do c<-a;[c,c],(:l)=<<init a,a++l,a]!!length a
f(h:r)=h:y r

Provalo online!


C'è uno spazio superfluo dietro g.
Laikoni,

1
Inoltre (x:r)!(y:t)=x:y:r!t;e!_=eè più breve di a!b=id=<<[[x,y]|(x,y)<-zip a b].
Laikoni,

Come #puoi sempre fare il primo g(a:t)|l<-last t=a:[ ...
personaggio

@Laikoni davvero, quelli sono grandi miglioramenti!
bartavelle,

Ho trovato una soluzione a 95 byte che utilizza un approccio simile al tuo (le grandi menti pensano allo stesso modo, eh?). Puoi usarlo o posso pubblicare una risposta separata.
user1472751,

2

Powershell, 113 111 byte

param($s)-join($s+='0'*($s-eq'#'))[0,1+((,1*5),(2,1*2+2),(1,2,2,3,3),(4,2,4,3,4),(2..5+5),(2..6))[$s.Length-2]]

Script di test spiegato:

$f = {

param($s)           # parameter string
$s+='0'*($s-eq'#')  # append '0' if $s equal to '#'
$i=(                # get indexes from array
    (,1*5),         # $i = 1,1,1,1,1 if $s.length-2 = 0
    (2,1*2+2),      # $i = 2,1,2,1,2 if $s.length-2 = 1
    (1,2,2,3,3),    # $i = 1,2,2,3,3 if $s.length-2 = 2
    (4,2,4,3,4),    # $i = 4,2,4,3,4 if $s.length-2 = 3
    (2..5+5),       # $i = 2,3,4,5,5 if $s.length-2 = 4
    (2..6)          # $i = 2,3,4,5,6 if $s.length-2 = 5
)[$s.Length-2]
-join$s[0,1+$i]     # join chars from $s by indexes 0, 1 and $i


}

@(
    , ("#", "#000000")
    , ("#0", "#000000")
    , ("#4", "#444444")
    , ("#f", "#ffffff")
    , ("#a1", "#a1a1a1")
    , ("#0f", "#0f0f0f")
    , ("#99", "#999999")
    , ("#1a8", "#11aa88")
    , ("#223", "#222233")
    , ("#fff", "#ffffff")
    , ("#1230", "#102030")
    , ("#d767", "#d77767")
    , ("#bbb5", "#b5b5b5")
    , ("#aabbc", "#aabbcc")
    , ("#00000", "#000000")
    , ("#3764e", "#3764ee")
    , ("#3764ef", "#3764ef")
    , ("#123456", "#123456")
    , ("#f8f8f8", "#f8f8f8")
) |% {
    $s, $e = $_
    $r = &$f $s
    "$($e-eq$r): $r"
}

Produzione:

True: #000000
True: #000000
True: #444444
True: #ffffff
True: #a1a1a1
True: #0f0f0f
True: #999999
True: #11aa88
True: #222233
True: #ffffff
True: #102030
True: #d77767
True: #b5b5b5
True: #aabbcc
True: #000000
True: #3764ee
True: #3764ef
True: #123456
True: #f8f8f8

1

JavaScript (ES6), 96 byte

s=>'#'+(c=[u,v,w,x,y,z]=s.slice(1)||'0',z?c:y?c+y:(x?u+x+v+x+w+x:w?u+u+v+v+w+w:c.repeat(v?3:6)))


1

Perl, 61 byte

say+(/./g,0)[0,1,(unpack+S7,"g+g+ÜRÉ/Â¥[ [")[y/#//c]=~/./g]

Corri con perl -nE. Presuppone che l'input sia esattamente come descritto (fornisce risultati errati se l'input ha una nuova riga finale).

La stringa "g + g + ÜRÉ / Â ¥ [[" codifica i 7 numeri a 16 bit 11111,11111,21212,12233,42434,23455,23456come 14 caratteri latini1. Ecco un dump esadecimale per chiarezza:

0000001d: 672b 672b dc52 c92f c2a5 9f5b a05b       g+g+.R./...[.[

Ho sostituito la stringa Latin-1 con una chiamata a pack (), ed ho ottenuto: perl -nE 'say+(/./g,0)[0,1,(unpack+S7,pack "H*","672b672bdc52c92fc2a59f5ba05b")[y/#//c]=~/./g]'. Ma quando scrivo "#a", ottengo "# a0a0a0" che ritengo errato. Dovrebbe essere "#aaaaaa". (Forse ho fatto un errore nella chiamata pack ().)
JL

Questa volta ho sostituito il unpack () e pack () chiamate con i pantaloncini letterali, ed ha ottenuto: perl -nE 'say+(/./g,0)[0,1,(11111,11111,21212,12233,42434,23455,23456)[y/#//c]=~/./g]'. Sembra ancora essere sbagliato, poiché "#a" fornisce ancora la risposta errata di "# a0a0a0" (anziché "#aaaaaa").
JL,

Ah! L'avevo capito! Avevo bisogno di utilizzare l' -linterruttore (che di "Ell" come nella "lettera L") con il -nEcommutatore, in questo modo: perl -lnE 'say+(/./g,0)[0,1,(11111,11111,21212,12233,42434,23455,23456)[y/#//c]=~/./g]'. Ora funziona correttamente.
JL,

L'avvertenza che dice "(fornisce risultati errati se l'input ha una nuova riga finale)" può essere eliminato cambiando "Esegui con perl -nE" in "Esegui con perl -lnE". (La -lparte dell'interruttore si sbarazza della nuova riga finale per te.)
JL

L'utilizzo -Fsulla riga di comando consente di modificarlo per say+(@F,0)[0,1,(unpack+S7,"g+g+ÜRÉ/Â¥[ [")[$#F]=~/./g]salvare 5 byte nel codice.
Xcali,

1

Lotto di Windows, 389 372 362 349 231 byte

Ho copiato totalmente il codice @Neil ...

@call:c %s:~1,1% %s:~2,1% %s:~3,1% %s:~4,1% %s:~5,1% %s:~6,1%
@exit/b
:c
@for %%r in (#%1%2%3%4%5%6.%6 #%1%2%3%4%5%5.%5 #%1%4%2%4%3%4.%4 %s%%1%2%3.%3 
%s%%1%2%1%2.%2 %s%%1%1%1%1%1.%1 #000000.0)do @if not %%~xr.==. @echo %%~nr&exit/b

1
la sostituzione di% s% con% 1 dovrebbe farti risparmiare qualche byte.
Satibel,

2
%s:~3,1%%s:~4,1%può essere sostituito con %s:~3,2%. Inoltre non sono sicuro che questo funzioni per un input di #.
Neil,

2
A proposito, ho provato un algoritmo diverso ed è uscito a 243 byte.
Neil,

1
Posso sapere qual è l'algoritmo?
stevefestl,

1
(Mi dispiace, non ho visto il tuo commento a causa della mancanza di @Neil.) C'è qualche scaldabagno ma le due linee di interesse sono call:c %s:~1,1% %s:~2,1% %s:~3,1% %s:~4,1% %s:~5,1% %s:~6,1%e for %%r in (#%1%2%3%4%5%6.%6 #%1%2%3%4%5%5.%5 #%1%4%2%4%3%4.%4 %s%%1%2%3.%3 %s%%1%2%1%2.%2 %s%%1%1%1%1%1.%1 #000000.0)do if not %%~xr.==. echo %%~nr&exit/b.
Neil,

1

Pyth, 35 byte

+\#@<R6[J|tQ\0K*6JKKs*R2JjeJJ+JeJ)l

Provalo online qui o verifica tutti i casi di test qui .

+\#@<R6[J|tQ\0K*6JKKs*R2JjeJJ+JeJ)lQ   Implicit: Q=eval(input())
                                       Trailing Q inferred
          tQ                           Remove first char of input
         |  \0                         The above, or "0" if empty
        J                             *Store in J (also yields stored value)
              K*6J                    *Repeat J 6 times, store in K
                  KK                  *2 more copies of the above
                    s*R2J             *Duplicate each char of J in place
                         jeJJ         *Join chars of J on last char of J
                             +JeJ     *Append last char of J to J
       [                         )     Wrap the 5 starred results in an array
    <R6                                Trim each to length 6
   @                              lQ   Choose result at index of length of input
                                       (Modular indexing, so length 7 selects 0th element)
+\#                                    Prepend #, implicit print

1

Python 2 , 99 byte

def a(s):s=s[1:]or'0';l=len(s);print('#'+(l/4*s[-1]).join(i+i*(l==3)for i in(l<5)*6*s)+s+s[-1])[:7]

Provalo online!


Bel primo post. A parte, provalo online! è un sito facoltativo ma consigliato che esegue il codice da includere nella risposta. Può generare post CG&CC e fornisce un conteggio di byte accurato per l'avvio.
Veskah,

Molto bello, grazie!
Jitse il

0

Python 2 - 179 byte

n=raw_input()                                #prompts for string
t=len(n)                                     #the length of the string is stored to 't'
if t==1:n+="0"*6                             #if t is only one char long, it needs to be black, so n is assigned 6 zeroes
if t==2:n+=n[1]*5                            #if t is two chars long, it adds the last character times 5 at the end
if t==3:n+=n[1:3]*2                          #if t is 3 chars, it multiplies the last two digits times 3
if t==4:n="#"+n[1]*2+n[2]*2+n[3]*2           #if t is 4 chars, it multiplies each char by two
if t==5:n=n[:2]+n[4]+n[2]+n[4]+n[3]+n[4]     #if t is 5 chars, it makes it work
if t==6:n+=n[t-1]                            #if t is 6 chars, it adds the last character to the end
print n                                      #it prints out n

Qualcuno può aiutarmi a salvare alcuni byte? Tutte le dichiarazioni if ​​sembrano poter essere abbreviate in qualcosa di più corto, non so proprio cosa.


1
Prova a mettere ogni frammento in un elenco e indicizzare. Inoltre, il passaggio a Python 3 molto probabilmente farà risparmiare byte ed list[len(list)-x]è lo stesso di list[-x].
CalculatorFeline

Se si desidera eliminare alcuni byte, prendere in considerazione la conversione if t==1:in if t<2:(e if t==2:in if t<3:, ecc.). È meno leggibile, certo, ma più capace di giocare a golf!
JL,

0

TXR Lisp: 171 byte

rientrato:

(do let ((s (cdr @1)))
  (caseql (length s)
    (0 "#000000") 
    (1 `#@s@s@s@s@s@s`)
    (2 `#@s@s@s`)
    (3 `#@[mappend list s s]`)
    (4 `#@[s 0]@[s 3]@[s 1]@[s 3]@[s 2]@[s 3]`)
    (5 `#@s@[s 4]`)
    (6 `#@s`))))

Questa è una funzione anonima: la domacro genera un (lambda ...)modulo.

È uno stile di codifica idiomatico, adatto alla produzione; l'unico golf è schiacciare gli spazi bianchi:

(do let((s(cdr @1)))(caseql(length s)(0"#000000")(1`#@s@s@s@s@s@s`)(2`#@s@s@s`)(3`#@[mappend list s s]`)(4`#@[s 0]@[s 3]@[s 1]@[s 3]@[s 2]@[s 3]`)(5`#@s@[s 4]`)(6`#@s`))))

0

Braingolf , 95 byte

l1-.1e$_!&@4>[!@]|.2e$_!&@!@2!@2|.3e$_<@V2[R<!@!@v]|.4e$_<@VRM&,2>[@v!@R]|.5e$_<@!&@@|.6e$_&@|;

Provalo online!

Questo è effettivamente l'equivalente di Braingolf di un caso di commutazione sulla quantità di caratteri dopo #l'inserimento.

Spiegazione

Roba che funziona sempre:

l1-.1  Implicit input to stack
l      Push length of stack
 1-    Decrement last item in stack
   .   Duplicate last item in stack
    1  Push 1

Se #X:

e$_!&@4>[!@]|
e              If last 2 items (input length - 1 and 1) are equal..
 $_            ..Pop last item silently
   !&@         ..Print entire stack as chars without popping
      4>       ..Push 4 and move it to start of stack
        [..]   ..While loop, decrements first item in stack when it reaches ]
               ..If first item in stack is 0 when reaching ], exit loop
               ..This loop will run 5 times
         !@    ....Print last char without popping
            |  endif

Se #XX

Questo potrebbe essere un po 'golfabile, potrei guardarlo quando torno a casa

.2e$_!&@!@2!@2|
.2               Duplicate last item and push 2
  e              If last 2 items (input length - 1 and 2) are equal..
   $_            ..Pop last item silently
     !&@         ..Print entire stack as chars without popping
        !@2      ..Print last 2 items as chars without popping
           !@2   ..Print last 2 items as chars without popping
              |  Endif

Se #XXX

.3e$_<@V2[R<!@!@v]|
.3                   Duplicate last item and push 3
  e                  If last 2 items (input length - 1 and 3) are equal..
   $_                ..Pop last item silently
     <@              ..Move first item in stack to the end, then pop and print
       V2            ..Create new stack and push 2 to it
         [.......]   ..While loop, see above for explanation
          R<         ....Switch to stack1 and move first item to end of stack
            !@!@     ....Print last item on stack twice without popping
                v    ....Move to stack2 for loop counting
                  |  Endif

Ti viene l'idea


0

Rubino , 127 byte

c=~/#(.)?(.)?(.)?(.)?(.)?(.)?/
$6?c:'#'+($5?$1+$2+$3+$4+$5*2:$4?$1+$4+$2+$4+$3+$4:$3?$1*2+$2*2+$3*2:$2?($1+$2)*3:$1?$1*6:"0"*6)

Provalo online!


0

Rubino , 118 byte

def f c
c.sub!'#',''
s=c.size
t=c[3]
s>5?'#'+c:f(s<1?'0':s<2?c*6:s<3?c*3:s<4?c*2:s<5?c[0]+t+c[1]+t+c[2]+t:c+c[-1])
end

Provalo online!


0

05AB1E , 24 byte

ćU©0®Ð€D®S¤ý®¤«)JIgè6∍Xì

Provalo online o verifica tutti i casi di test .

Spiegazione:

ć           # Extract the head of the (implicit) input-string;
            # pop and push remainder and head
 U          # Pop and store the head in variable `X`
  ©         # Store the remainder in variable `®` (without popping)
  0         # Push a 0
  ®Ð        # Push `®` three times
    D      # Duplicate each character in the last copy (which becomes a character-list)
  ®S        # Push variable `®` again, converted to a character-list
    ¤       # Get its last character (without popping the list itself)
     ý      # Join the list by this character
  ®         # Push variable `®` once again
   ¤        # Get its last character (without popping the string itself)
    «       # Append it to the string
  )         # Wrap all values into a list
   J        # Join the inner list from `€D` together to a list,
            # or in case of input `#`, join everything together to string "0"
            #  i.e. "#" → (["","0","","","",""] → ) "0"
            #  i.e. "#4" → ["4","0","4","4","44","4","44"]
            #  i.e. "#a1" → ["a1","0","a1","a1","aa11","a11","a11"]
            #  i.e. "#1a8" → ["1a8","0","1a8","1a8","11aa88","18a88","1a88"]
            #  i.e. "#abcd" → ["abcd","0","abcd","abcd","aabbccdd","adbdcdd","abcdd"]
            #  i.e. "#3764e" → ["3764e","0","3764e","3764e","33776644ee","3e7e6e4ee","3764ee"]
            #  i.e. #123456 → ["123456","0","123456","123456","112233445566","16263646566","1234566"]
    Ig      # Push the length of the input
      è     # Index (0-based) this into the list (with automatic wraparound for length=7)
       6   # Extend/shorten the string to length 6
         Xì # And prepend variable `X` (the "#")
            # (after which the result is output implicitly)
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.