Imprimir o comprimento total de todos os caracteres "entre aspas"

12

Regras

Neste desafio, vou redefinir um pouco a definição de "aspas".

  • As aspas ( aspas AKA ) são caracteres idênticos usados ​​em pares em vários sistemas de escrita para desencadear fala direta, cotação ou frase. O par consiste em aspas de abertura e aspas de fechamento, com o mesmo caractere (com distinção entre maiúsculas e minúsculas).

  • Se houver pares de aspas sobrepostos,

    • Se um par aninhar outro, os dois pares ainda serão válidos.
    • Se um par não aninhar outro, o primeiro par inicial permanece válido. O outro não é mais considerado um par.
  • Ao contar caracteres entre aspas (comprimento de um par de aspas),

    • As citações em si não contam.
    • O comprimento de cada par é contado de forma independente. A sobreposição não afeta outra.

Objetivo

Seu objetivo é imprimir o comprimento total de todas as cotações válidas. Este é o código golf, portanto o código com o menor número de bytes vence.

Exemplos

Legend:
    <foo>: Valid quotes
    ^    : Cannot be paired character

Input   : ABCDDCBA
`A`  (6): <BCDDCB>
`B`  (4):  <CDDC>
`C`  (2):   <DD>
`D`  (0):    <>
Output  : 12

Input   : ABCDABCD
`A`  (3): <BCD>
`B`  (0):  ^   ^
`C`  (0):   ^   ^
`D`  (0):    ^   ^
Output  : 3

Input   : AABBBBAAAABA
`A`  (0): <>    <><> ^
`B`  (0):   <><>    ^
Output  : 0

Input   : ABCDE
Output  : 0

Input   : Print the total length of all "quoted" characters
`r` (40):  <int the total length of all "quoted" cha>
`n` (14):    <t the total le>
`t` (15):     < >   <o>       <h of all "quo>
` `  (7):      ^   <total>      <of>   ^        ^
`h`  (0):        ^             ^                  ^
`e`  (8):         < total l>                 ^          ^
`o`  (0):            ^           ^         ^
`a`  (0):              ^            ^              ^ ^
`l`  (0):               ^ ^          <>
`"`  (0):                               ^      ^
`c`  (0):                                        ^    ^
Output  : 84

Input   : Peter Piper picked a peck of pickled peppers
`P`  (5): <eter >
`e`  (9):  <t>     ^      <d a p>           <d p>  ^
`r`  (0):     ^     ^
` `  (3):      ^     ^      <a>    <of>       ^
`i`  (5):        <per p>
`p`  (3):         <er >        ^       ^       ^ <>
`c`  (8):               <ked a pe>       ^
`k`  (7):                ^        < of pic>
`d`  (0):                  ^                 ^
Output  : 40

Input   : https://www.youtube.com/watch?v=dQw4w9WgXcQ
`h` (27): <ttps://www.youtube.com/watc>
`t`  (0):  <>            ^          ^
`/`  (0):       <>               ^
`w` (14):         <><.youtube.com/>         <4>
`.`  (7):            <youtube>
`o`  (0):              ^       ^
`u`  (1):               <t>
`c`  (0):                     ^      ^             ^
`Q`  (8):                                  <w4w9WgXc>
Output  : 57
user2652379
fonte
@NickKennedy Corrigi as regras para parecerem mais com cotações reais. Eu acho que é isso que você esperava. Você pode revisar isso?
user2652379
1
parece bom! Obrigado por ouvir os meus comentários.
Nick Kennedy

Respostas:

4

APL (Dyalog Unicode) , SBCS de 36 bytes

Programa completo. Solicita a entrada de stdin.

≢∊t⊣{t,←'(.)(.*?)\1'S'\2'⊢⍵}⍣≡⍞⊣t←⍬

Experimente online!

t←⍬ configurar um acumulador t(para t otal)

⍞⊣ descarte isso em favor da entrada de string de stdin (símbolo: citação no console)

{}⍣≡ Aplique a seguinte lambda anônima até estável (ponto de correção; anterior ≡ próxima)

⊢⍵ no argumento

 ... ⎕S'\2' PCRE S Earch para o seguinte, o grupo 2 retornando para cada jogo:

  (.) qualquer caractere (chamaremos este grupo 1) de
  (.*?) poucos caracteres quanto possível (chamaremos esse grupo 2)
  \1 de caractere do grupo 1

t,← atualize tanexando to valor atual ao

t⊣ descartar que (a lista final de nenhuma correspondência) em favor de t

 conte o número de caracteres nesse

Adão
fonte
2

Ruby , 49 bytes

Solução recursiva. Encontre grupos de cotações, conte seus comprimentos e, em seguida, procure recursivamente comprimentos de subgrupos e some tudo.

f=->s{s.scan(/(.)(.*?)\1/).sum{|a,b|b.size+f[b]}}

Experimente online!

Value Ink
fonte
1

JavaScript (ES6), 64 bytes

f=([c,...a],i=a.indexOf(c))=>c?(~i&&i+f(a.splice(0,i+1)))+f(a):0

Experimente online!

Comentado

f = (                       // f is a recursive function taking either the input string
                            // or an array of characters, split into
  [c, ...a],                // c = next character and a[] = all remaining characters
  i = a.indexOf(c)          // i = index of the 1st occurrence of c in a[] (-1 if not found)
) =>                        //
  c ?                       // if c is defined:
    ( ~i &&                 //   if i is not equal to -1:
      i +                   //     add i to the final result
      f(a.splice(0, i + 1)) //     remove the left part of a[] up to i (included) and
    )                       //     do a recursive call on it
    + f(a)                  //   add the result of a recursive call on a[]
  :                         // else:
    0                       //   stop recursion
Arnauld
fonte
1

JavaScript (Node.js) , 65 64 62 bytes

f=s=>(s=/(.)(.*?)\1(.*)/.exec(s))?f(s[3])+f(s=s[2])+s.length:0

Experimente online!

Abordagem original (64 bytes):

f=(s,r=/(.)(.*?)\1/g,t=r.exec(s))=>t?f(t=t[2])+t.length+f(s,r):0

Experimente online!

f=s=>                              // Main function:
 (s=/(.)(.*?)\1(.*)/.exec(s))?     //  If a "quoted" segment can be found:
  f(s[3])                          //   Return the recursive result outside this segment,
  +f(s=s[2])                       //   plus the recursive result of this segment,
  +s.length                        //   plus the length of this segment
 :0                                //  If not: no quoted segment, return 0.
Shieru Asakoto
fonte
1

Flak cerebral , 100 bytes

({{<({}<>)<>(({<>(({}({})<>[({}<>)]))(){[{}()](<>)}{}}{}){(<>)})<>{}>{<>({}<<>({}<>)>)<>}<>[{}]}{}})

Experimente online!

Comentado

# Loop over each character in input and sum iterations:
({{

  # Evaluate matching quote search as zero
  <

    # Move opening "quote" to right stack
    ({}<>)<>

    # Until match or end of search string found:
    # Note that the character to search for is stored as the sum of the top two entries in the right stack.
    (

      ({

        <>((

          # Character to search for
          {}({})

          # Subtract and move next character
          <>[({}<>)]

        # Push difference twice
        ))

        # Add 1 to evaluation of this loop
        ()

        # If no match, cancel out both 1 and pushed difference to evaluate iteration as zero (keep one copy of difference for next iteration)
        # (compare to the standard "not" snippet, ((){[()](<{}>)}{}) )
        # Then move to other stack
        {[{}()](<>)}{}

        # If a match was found, this will instead pop a single zero and leave a zero to terminate the loop, evaluating this iteration as 0+1=1.

      # Push 1 if match found, 0 otherwise
      }{})

      # If match found, move to left stack and push 0 denote end of "quoted" area.
      {(<>)}

    # Push the same 1 or 0 as before
    )

    # Remove representation of opening "quote" searched for
    # The closing quote is *not* removed if there is a match, but this is not a problem because it will never match anything.
    <>{}

  >

  # Move searched text back to left stack, evaluating each iteration as either the 1 or 0 from before.
  # This counts characters enclosed in "quotes" if a match is found, and evaluates as 0 otherwise.
  {<>({}<<>({}<>)>)<>}

  # Remove 0/1 from stack; if 1, cancel out the 1 added by the closing "quote"
  <>[{}]

# Repeat until two consecutive zeroes show up, denoting the end of the stack.
# (Because closing quotes are not removed, it can be shown that all other zeroes are isolated on the stack.)
}{}})
Nitrodon
fonte
1

Gelatina , 17 bytes

œṡḢẈṖ$Ḣ+ɼṛƲ)Ẏ$F¿®

Experimente online!

Um programa completo que usa um único argumento, a sequência de entrada envolvida em uma lista e retorna o número de caracteres de aspas como um número inteiro.

Nick Kennedy
fonte