लंबा पत्र चलता है


28

लोअरकेस ASCII अक्षरों के एक गैर-खाली स्ट्रिंग को देखते हुए a-z, उस पत्र के प्रत्येक "रन" के साथ उस स्ट्रिंग को उस पत्र की एक और प्रतिलिपि द्वारा लंबा किया गया।

उदाहरण के लिए, dddogg( 3 d 's, 1 o , 2 g ' s) ddddooggg( 4 d 's, 2 o ' s, 3 g 's) में बदल जाता है।

यह : बाइट्स जीत में सबसे छोटा जवाब।

परीक्षण के मामलों

aabbcccc -> aabbbccccc
घंटी -> ddooorrbbeelll
uuuuuuuuuz -> uuuuuuuuuz
q -> qq
xyxyxy -> xxyyxxyyxxyy
xxxyyy -> xxxxyyyy

संबंधित (यदि रन की लंबाई विषम है तो केवल एक और पात्र जोड़ें)
माइल्डलीमिलकॉस्ट

जवाबों:


11

05AB1E , 5 बाइट्स

.¡€ĆJ

स्पष्टीकरण:

Example input: "dddogg"
.¡       Split into chunks of consecutive equal elements
         stack: [['ddd', 'o', 'gg']]
  €      For each...
   Ć       Enclose; append the first character to the end of the string
         stack: [['dddd', 'oo', 'ggg']]
    J    Join array elements into one string
         stack: ['ddddooggg']
Implicitly output top element in stack: "ddddooggg"

इसे ऑनलाइन या परीक्षण सूट के रूप में आज़माएं

एनक्लोज एक बहुत नया बिलिन है; यह पहली बार है जब मैंने इसका उपयोग किया है। बहुत ही सुविधाजनक ;)

05AB1E , 4 बाइट्स (गैर-प्रतिस्पर्धात्मक)

γ€ĆJ

γनवीनतम अद्यतन में इसे बदल दिया गया है।


एन्क्लोज़ अब तक के सबसे क्रेज़िएस्ट बिलिन में से एक है।
आउटगॉल्फ को एरिक करें

3
@EriktheOutgolfer क्रेजी? नाह।
ओकेक्स

मुझे लगता है कि dddd"एनक्लोज़" निष्पादित होने के बाद स्पष्टीकरण में स्टैक पर सरणी के पहले तत्व के लिए आपका मतलब है।
एगलैंगिंग फ्रूट

वाह, एक मिनट रुको, नरक क्या है Ć?
मैजिक ऑक्टोपस '

इसके अलावा, xx -> xxxxयह कब होना चाहिए xx -> xxx...?
मैजिक ऑक्टोपस



8

पायथ , 7 बाइट्स

r9hMMr8

टेस्ट सूट

यह काम किस प्रकार करता है

r9hMMr8  example input: "xxyx"
     r8  run-length encoding
         [[2, "x"], [1, "y"], [1, "x"]]
  hMM    apply h to each item
         this takes advantage of the overloading
         of h, which adds 1 to numbers and
         takes the first element of arrays;
         since string is array of characters in
         Python, h is invariant on them
         [[3, "x"], [2, "y"], [2, "x"]]
r9       run-length decoding
         xxxyyxx


6

एलिस , 17 बाइट्स

/kf.>o./
@i$QowD\

इसे ऑनलाइन आज़माएं!

व्याख्या

/.../
@...\

यह उन कार्यक्रमों के लिए एक ढांचा है जो पूरी तरह से ऑर्डिनल मोड में काम करते हैं और अनिवार्य रूप से रैखिक होते हैं (सरल छोरों को लिखा जा सकता है, और इस कार्यक्रम में एक का उपयोग किया जाता है, लेकिन यह अन्यथा नियंत्रण शाखा प्रवाह के साथ काम करने के लिए मुश्किल है)। निर्देश सूचक बाईं ओर से कोड के माध्यम से तिरछे ऊपर और नीचे उछलता है, फिर अंत में दो दर्पणों द्वारा एक सेल द्वारा स्थानांतरित हो जाता है, और दाएं से बाएं घूमता है, उन कोशिकाओं को निष्पादित करता है जो इसे पहले पुनरावृत्ति पर छोड़ देता है। रैखिक रूप (दर्पणों की अनदेखी) तब मूल रूप से इस तरह दिखता है:

ifQ>w.Doo.$k@

आइए इससे गुजरते हैं:

i     Read all input as a string and push it to the stack.
f     Split the string into runs of equal characters and push those
      onto the stack.
Q     Reverse the stack, so that the first run is on top.
>     Ensure that the horizontal component of the IP's movement is east.
      This doesn't do anything now, but we'll need it after each loop
      iteration.
w     Push the current IP address to the return address stack. This marks
      the beginning of the main loop.

  .     Duplicate the current run.
  D     Deduplicate the characters in that run so we just get the character
        the run is made up of.
  o     Output the character.
  o     Output the run.
  .     Duplicate the next run. When we've processed all runs, this will
        duplicate an implicit empty string at the bottom of the stack instead.
  $     If the string is non-empty (i.e. there's another run to process),
        execute the next command otherwise skip it.

k     Pop an address from the return address stack and jump there. Note that
      the return address stack stores no information about the IP's direction,
      so after this, the IP will move northwest from the w. That's the wrong
      direction though, but the > sets the horizontal component of the IP's
      direction to east now, so that the IP passes over the w again and can
      now execute the next iteration in the correct direction.
@     Terminate the program.


4

ब्रेकीलॉग , 8 बाइट्स

ḅ{t,?}ᵐc

इसे ऑनलाइन आज़माएं!

व्याख्या

             Example input: "doorbell"
ḅ            Blocks: ["d","oo","r","b","e","ll"]
 {   }ᵐ      Map: ["dd","ooo","rr","bb","ee","lll"]
  t            Tail: "d" | "o" | "r" | "b" | "e" | "l"
   ,?          Prepend to input: "dd" | "ooo" | "rr" | "bb" | "ee" | "lll"
       c     Concatenate: "ddooorrbbeelll"


@LeakyNun मैंने वास्तव में पाया कि इस पोस्ट करने के बाद भी एक
37 पर घातक

आपको वास्तव में ~मेटाप्रेडिकेट्स पर वरीयता लेने की आवश्यकता है (या इसे पोस्टफ़िक्स ऑपरेशन में बदलना); अगर आपने किया, तो आप सात में ऐसा कर सकते हैं।



3

सी, 53 बाइट्स

i;f(char*s){for(;i=*s++;)putchar(i^*s?putchar(i):i);}

इसे ऑनलाइन आज़माएं!


1
इस समाधान को पोस्ट करने के लिए धन्यवाद क्योंकि इसने मुझे एक छोटे से समाधान के साथ आने के लिए प्रेरित किया जो दूसरे पुश्त को छोड़ देता है। Upvoted।
2501


3

जाप , 8 बाइट्स

-Pध्वज के लिए कोड के 7 बाइट, +1 ।

ó¥ ®+Zg

इसे ऑनलाइन टेस्ट करें!

व्याख्या

यह ó(मिथ्या पर विभाजन) निर्मित का उपयोग करता है जिसमें मैंने कल ही जोड़ा:

ó¥  ®   +Zg
ó== mZ{Z+Zg}

ó==           // Split the input into runs of equal chars.
    mZ{    }  // Replace each item Z in this array with
       Z+Zg   //   Z, concatenated with the first char of Z.
-P            // Join the resulting array back into a string.
              // Implicit: output result of last expression


3

जावास्क्रिप्ट (ईएस 6), 33 30 बाइट्स

s=>s.replace(/(.)\1*/g,"$1$&")

कोशिश करो

f=
s=>s.replace(/(.)\1*/g,"$1$&")
i.addEventListener("input",_=>o.innerText=f(i.value))
console.log(f("aabbcccc")) // aaabbbccccc
console.log(f("doorbell")) // ddooorrbbeelll
console.log(f("uuuuuuuuuz")) // uuuuuuuuuuzz
console.log(f("q")) // qq
console.log(f("xyxyxy")) // xxyyxxyyxxyy
console.log(f("xxxyyy")) // xxxxyyyy
<input id=i><pre id=o>


3

ब्रेनफक , 23 बाइट्स

,[.[->->+<<]>[[-]>.<],]

इसे ऑनलाइन आज़माएं!

व्याख्या

,            read the first input character
 [           main loop to be run for each input character
 .           output the character once
 [->->+<<]   subtract from previous character (initially 0), and create a copy of this character
 >[          if different from previous character:
   [-]       zero out cell used for difference (so this doesn't loop)
   >.<       output character again from copy
 ]
 ,           read another input character
]

1
क्या यह अक्षर> 256 के साथ काम करेगा?
एगलैंगिंग फ्रूट

@ चैलेंजर 5 हां। रन लेंथ को भी ट्रैक नहीं किया गया है, इसलिए रन लेंथ को ओवरफ्लो करने का कोई तरीका नहीं है।
नाइट्रोडोन



2

हास्केल, 36 बाइट्स

f(a:b:c)=a:[a|a/=b]++f(b:c)
f x=x++x

प्रयोग उदाहरण: f "aab"-> "aaabb"इसे ऑनलाइन आज़माएं!

जब स्ट्रिंग में कम से कम दो वर्ण होते हैं, aतो पहले चार को बांधते हैं , bदूसरे cको और बाकी स्ट्रिंग को। यदि इसके बाद पुनरावर्ती कॉल के साथ उत्पादन नहीं के बराबर aहै, aतो आउटपुट का अनुसरण किया जाता है । यदि केवल एक चार है, तो परिणाम इस चार गुना है।abb:c


2

सीजेएम, 10 बाइट्स

le`1af.+e~

इसे ऑनलाइन आज़माएं!

स्पष्टीकरण:

e# Input: doorbell
l   e# Read line:              | "doorbell"
e`  e# Run-length encode:      | [[1 'd] [2 'o] [1 'r] [1 'b] [1 'e] [2 'l]]
1a  e# Push [1]:               | [[1 'd] [2 'o] [1 'r] [1 'b] [1 'e] [2 'l]] [1]
f.+ e# Vectorized add to each: | [[2 'd] [3 'o] [2 'r] [2 'b] [2 'e] [3 'l]]
e~  e# Run-length decode:      | "ddooorrbbeelll"
e# Implicit output: ddooorrbbeelll


2

जेली , 5 बाइट्स

n2\׿

इसे ऑनलाइन आज़माएं!

यह काम किस प्रकार करता है

n2\׿  Main link. Argument: s (string)

n2\    Reduce all overlapping slices of length two by non-equal.
       For input "doorbell", this returns [1, 0, 1, 1, 1, 1, 0].
   ×   Multiply the characters of s by the Booleans in the resulting array. This is
       essentially a bug, but integer-by-string multiplication works as in Python.
       For input "doorbell", this returns ['d', '', 'o', 'r', 'b', 'e', '', 'l'].
       Note that the last character is always left unchanged, as the Boolean array
       has one fewer element than s.
    ż  Zip the result with s, yielding an array of pairs.
       For input "doorbell", this returns [['d', 'd'], [[], 'o'], ['o', 'o'],
           ['r', 'r'], ['b', 'b'], ['e', 'e'], [[], 'l'], ['l', 'l']].
       (implicit) Print the flattened result.

अच्छा खेला, डेनिस।
लीक नून

1

बैच, 140 बाइट्स

@set/ps=
@set r=
:g
@if not "%s:~,1%"=="%s:~1,1%" set r=%r%%s:~,1%
@set r=%r%%s:~,1%
@set s=%s:~1%
@if not "%s%"=="" goto g
@echo %r%

STDIN पर इनपुट लेता है।





1

गणितज्ञ, 34 21 बाइट्स

13 बाइट्स की बचत, गणितज्ञ में ऐसा करने का सही तरीका खोजने के लिए मार्टिन एंडर का धन्यवाद !

##&[#,##]&@@@Split@#&

शुद्ध फ़ंक्शन इनपुट और आउटपुट दोनों स्वरूपों के रूप में वर्णों की एक सरणी का उपयोग करता है। Splitसमान पात्रों के अपने रन में एक सूची को अलग करता है। ##&[#,##]&एक ऐसा फ़ंक्शन है जो तर्कों का एक क्रम देता है: पहला तर्क जो इसे खिलाया जाता है, फिर सभी तर्क (इसलिए विशेष रूप से पहले एक को दोहराते हुए); यह सूची के @@@प्रत्येक सबलिस्ट में लागू ( ) है Split


1
हो सकता है ##&[#,##]&@@@Split@#&? (अनटाइटेड।)
मार्टिन एंडर

1
^ अब परीक्षण किया गया। Btw, Gatherवास्तव में काम नहीं करता है अगर एक ही चरित्र के कई रन हैं (लेकिन सौभाग्य Splitसे वैसे भी बाइट कम है)
मार्टिन एंडर

(ओह, हाँ, Splitमेरे दिल में मेरा मतलब है) आपकी पहली टिप्पणी में अद्भुत निर्माण!
ग्रेग मार्टिन

1

जावा, 151 146 60 बाइट्स

String f(String s){return s.replaceAll("((.)\\2*)","$1$2");}
  • -5 बाइट्स, @FryAmTheEggman को धन्यवाद
  • -86 बाइट्स, @KevinCruijssen को धन्यवाद

regex

(         )     group

 (.)            a character

     \\2*       optional repetition

विस्तृत

import java.util.*;
import java.lang.*;
import java.io.*;

class H
{
    public static String f(String s)
    {
        return s.replaceAll("((.)\\2*)","$1$2");
    }

    public static void main(String[] args)
    {
        f("dddogg");
    }
}

ध्यान नहीं दिया गया था कि पहले से ही एक जावा जवाब था, इसलिए मैंने अपना डिलीट कर दिया। लेकिन क्यों Matcherऔर Patternकैसे? आप इसे इस तरह से 60 बाइट्स के लिए गोल्फ कर सकते हैं :String f(String s){return s.replaceAll("((.)\\2*)","$1$2");}
केविन क्रूज़सेन

@ केविनक्रूजसेन ने अब तय किया, thx।
खालिद.के

1

ब्रेनफक , 38 बाइट्स

,.[.>,[[->+>+<<]<[->>-<<]>>[[-]>.<]]>]

इसे ऑनलाइन आज़माएं!

,.               print the "doubling" of the first char of input
[                this main loop runs on every char
  .              print it "normally" (the not-doubling)
  >,             read the next char
  [              judiciously placed "loop" to prevent printing NULs
    [->+>+<<]    copy new char at position p to p+1 and p+2
    <[->>-<<]>>  subtract old char from p+1 - zero if same, nonzero otherwise
    [            if it *is* different (nonzero)...
      [-]        clear it
      >.<        print the char (at p+2 now) again
    ]
  ]
  >              the new char is now the old char
]

1

ऐलिस , 12 बाइट्स

इस जवाब को पोस्ट करने से पहले ही मार्टिन एंडर को दो बाइट्स दिए गए। वह उससे ज्यादा शक्तिशाली है जितना आप कभी सोच सकते हैं।

I4&.h%?-$OO!

इसे ऑनलाइन आज़माएं!

व्याख्या

I                 Input a character and push its unicode value
 4&.              Push 4 more copies of this value to the stack
                  (they will be needed for the following operations)
    h%            Try to compute n%(n+1), exits with an error if n==-1
                  which happens on EOF
      ?           Push a copy of what's currently on the tape.
                  In the first iteration this will push -1, in following
                  iterations it will push the previous character.
       -$O        If the two topmost values on the stack are different
                  output the third one. This will output one more copy of
                  any new character encountered.
          O       Output this character.
           !      Store this character on the tape.

                  Execution loops back to the beginning of the line.
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.