Espandi catene di confronto


9

A differenza di molti linguaggi, Python valuta a<b<cin quanto sarebbe stato fatto nel campo della matematica, in realtà a confronto i tre numeri, al contrario di confrontare il booleano a<ba c. Il modo corretto di scrivere questo in C (e molti altri) sarebbe a<b && b<c.

In questa sfida, il tuo compito è espandere tali catene di confronto di lunghezze arbitrarie dalla rappresentazione intuitiva / Python, a come sarebbe scritto in altre lingue.

specificazioni

  • Il vostro programma dovrà gestire gli operatori: ==, !=, <, >, <=, >=.
  • L'input avrà catene di confronto utilizzando solo numeri interi.
  • Non preoccuparti della verità di nessuno dei confronti lungo la strada, questa è puramente una sfida di analisi / sintattica.
  • L'input non avrà spazi bianchi per impedire risposte che banalizzano l'analisi dividendo gli spazi.
  • Tuttavia, l'output può avere un solo spazio che circonda solo gli &&operatori di confronto o entrambi e quelli di entrambi &&, oppure nessuno dei due, ma essere coerente.

Casi test

Input                  Output
---------------------------------------------------------------

3<4<5                  3<4 && 4<5
3<4<5<6<7<8<9          3<4 && 4<5 && 5<6 && 6<7 && 7<8 && 8<9
3<5==6<19              3<5 && 5==6 && 6<19
10>=5<7!=20            10>=5 && 5<7 && 7!=20
15==15==15==15==15     15==15 && 15==15 && 15==15 && 15==15

Questo è , quindi vince il codice più corto in byte !

code-golf  parsing  conversion  syntax  code-golf  sequence  primes  code-challenge  geometry  optimization  code-golf  graph-theory  code-golf  number-theory  primes  integer  code-golf  source-layout  cops-and-robbers  code-golf  source-layout  cops-and-robbers  code-golf  sequence  primes  integer  code-golf  math  number-theory  primes  rational-numbers  code-golf  math  sequence  number-theory  primes  code-golf  string  code-golf  math  combinatorics  permutations  restricted-complexity  code-golf  array-manipulation  code-golf  number  sequence  code-golf  number  sequence  code-golf  binary-matrix  code-golf  math  tips  javascript  algorithm  code-golf  string  code-golf  number  sequence  code-golf  math  arithmetic  parsing  code-golf  number  sequence  primes  code-golf  string  ascii-art  geometry  integer  code-golf  geometry  code-golf  number  array-manipulation  code-golf  math  geometry  code-golf  number  sequence  arithmetic  integer  code-golf  string  kolmogorov-complexity  code-golf  number  code-golf  number  chess  code-golf  sequence  decision-problem  subsequence  code-golf  math  number  primes  code-golf  primes  permutations  code-golf  integer  probability-theory  statistics  code-golf  string  code-golf  sequence  decision-problem  parsing  board-game  code-golf  binary  graph-theory  code-golf  board-game  classification  tic-tac-toe  code-golf  ascii-art  polyglot  code-golf  date  code-golf  geometry 


Posso avere due spazi su entrambi i lati del &&?
H.Piz,

@ H.PWiz no, srry.
Maltysen,

Risposte:


6

Retina , 33 22 17 byte

-5 byte grazie a @MartinEnder

-2`\D(\d+)
$&&&$1

Provalo online!


@MartinEnder Un peccato 1>-2non funziona per limitare da entrambe le estremità in una sola volta ...
Neil

@Neil sì, Retina 1.0 otterrà una nuova sintassi limite laddove possibile.
Martin Ender,

Potresti pubblicare una spiegazione?
James,

5

buccia , 16 14 byte

Stampa uno spazio attorno a ciascun operatore.

wJ"&&"m←C2X3ġ±

Provalo online!

Spiegazione:

                  Implicit input, e.g            "3<4<5<6"
            ġ±    Group digits                   ["3","<","4","<","5","<","6"]
          X3      Sublists of length 3           [["3","<","4"],["<","4","<"],["4","<","5"],["<","5","<"],["5","<","6"]]
        C2        Cut into lists of length 2     [[["3","<","4"],["<","4","<"]],[["4","<","5"],["<","5","<"]],[["5","<","6"]]]
      m←          Take the first element of each [["3","<","4"],["4","<","5"],["5","<","6"]]
 J"&&"            Join with "&&"                 ["3","<","4","&&","4","<","5","&&","5","<","6"]
w                 Print, separates by spaces

Ben fatto. Potresti usare winvece di ;un approccio più diretto per unire le stringhe con gli spazi
Leone

Oh sì, come non ci ho pensato?
H.Piz,

3

Retina , 42 47 22 byte

Massiccia giocata a golf grazie a Kevin Cruijssen

(\D(\d+))(?=\D)
$1&&$2

Provalo online!


(==|!=|<=?|>=?)può essere \D+
ovs

Allo stesso modo (?<!^|\d)può essere (?<=\D). Inoltre (?=\d+)non è necessario, l'operatore sarà sempre seguito da un operando, a quel punto è possibile rilasciare il +dopo \D. C'è anche $&invece di $1$2, e quindi un ulteriore byte può essere salvato catturando dietro e guardando avanti invece di catturare avanti e guardando dietro.
Neil,

(\D(\d+))(?=\D)sulla riga 1 e $1&&$2sulla riga due è sufficiente ( 22 byte ). Provalo qui.
Kevin Cruijssen,

2

V , 37 byte

òͨ䫄0-9& ]«©¨ä«©¨„0-9& ]«©/±² ¦¦ ²³

Provalo online!

hexdump:

00000000: f2cd a8e4 ab84 302d 3926 205d aba9 a8e4  ......0-9& ]....
00000010: aba9 a884 302d 3926 205d aba9 2fb1 b220  ....0-9& ]../.. 
00000020: a6a6 20b2 b3                             .. ..

2

Clojure, 88 byte

Aggiornamento: subsanziché clojure.string/join.

#(subs(apply str(for[p(partition 3 2(re-seq #"(?:\d+|[^\d]+)" %))](apply str" && "p)))4)

2

J , 59 46 byte

4(}.;)_2{.\3' && '&;\]</.~0+/\@,2~:/\e.&'!<=>'

Provalo online!

Come funzionava

                        (0 , }. ~:&(e.&'!<=>') }:)

Stiamo cercando i confini dell'operatore. Le stringhe "decapitate" e "ridotte" vengono trasformate in zero e in quelle in cui gli 0 sono cifre, quindi suddivisi in punti X insieme. Prepara zero in modo che corrisponda alla lunghezza.

                   +/\                      </. ]     Split on boundaries. 
              ┌──┬──┬─┬─┬─┬──┬──┐
              │10│>=│5│<│7│!=│20│
              └──┴──┴─┴─┴─┴──┴──┘
         3' && '&;\          Add && to infixes of 3.
              ┌────┬──┬──┬──┐
              │ && │10│>=│5 │
              ├────┼──┼──┼──┤
              │ && │>=│5 │< │
              ├────┼──┼──┼──┤
              │ && │5 │< │7 │
              ├────┼──┼──┼──┤
              │ && │< │7 │!=│
              ├────┼──┼──┼──┤
              │ && │7 │!=│20│
              └────┴──┴──┴──┘
    _2{.\                    Take even numbered rows.
;}.,                         Concatenate after dropping the first box.


1

Carbone, 29 byte

≔ ηFθ«¿›ι9«F›η!⁺&&η≔ωη»≔⁺ηιηι
≔ ηFθ«F∧›ι9›η!⁺&&η≔⎇›ι9ω⁺ηιηι

Due formulazioni leggermente diverse dello stesso algoritmo di base. La stringa di input è ripetuta per carattere. Quando vengono rilevate le cifre, vengono raccolte in una variabile. Quando viene trovato un confine tra un numero e un operatore, viene stampato un ulteriore "&&" più la variabile e la variabile viene cancellata. Inizialmente la variabile viene inizializzata su uno spazio in modo che il primo limite non attivi il "&&" extra.


1

Gelatina , 16 byte

e€ØDŒg⁸ṁṡ3m2j⁾&&

Provalo online!

Spiegazione:

e€ØDŒg⁸ṁṡ3m2j⁾&& Uses Jelly stringification, thus full program only
eۯD             For each each char, 1 if it's in '0123456789', otherwise 0
    Œg           Split into longest runs of equal elements
      ⁸ṁ         Reshape original input like the list we just made
                 Reshaping will separate numbers from operators
        ṡ3       Get contiguous sublists of length 3
          m2     Keep every second item, starting from the first
                 This will keep every (number operator number) and
                 remove every (operator number operator) substring
            j⁾&& Join with '&&'

1

Java 8, 46 byte

s->s.replaceAll("(\\D(\\d+))(?=\\D)","$1&&$2")

Spiegazione:

Provalo qui.

s->                       // Method with String as both parameter and return-type
   s.replaceAll("(\\D(\\d+))(?=\\D)",
                "$1&&$2") //  Replace the match of the regex
                          //  with the second String
                          // End of method (implicit / single-line return-statement)

Spiegazione Regex:

(\D(\d+))(?=\D)   # 1) For all matches of this regex
   (\d+)          #  Capture group 2: a number (one or more digits)
(\D \d+ )         #  Capture group 1: anything but a number + the number
                  #   (`\D` will match the `=`, `!`, `<`, or `>`)
         (?=\D)   #  Look-ahead so everything after the match remains as is

 $1&&$2           # 2) Replace it with
 $1               #  Result of capture group 1 (trailing part of the equation + the number)
   &&             #  Literal "&&"
     $2           #  Result of capture group 2 (the number)

Esempio passo passo delle sostituzioni:

Initial:                             10>=5<7!=20
 Match of first replacement:            =5
 Replace with:                          =5&&5
After first replacement:             10>=5&&5<7!=20
 Match of second replacement:                <7
 Replace with:                               <7&&7
After second replacement (result):   10>=5&&5<7&&7!=20



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.