দৈর্ঘ্যের চিঠি চলে


28

ছোট হাতের ASCII অক্ষরের একটি খালি খালি স্ট্রিং দেওয়া a-z, একই অক্ষরের প্রতিটি পরপর "রান" দিয়ে সেই স্ট্রিংটিকে সেই চিঠির আরও একটি অনুলিপি দ্বারা প্রসারিত করে আউটপুট দেয়।

উদাহরণস্বরূপ, dddogg( 3 d ’গুলি, 1 o , 2 g 'গুলি) ddddooggg( 4 d ' গুলি, 2 o 'গুলি, 3 g ' গুলি) তে পরিণত হয়।

এটি : বাইট জেতে সংক্ষিপ্ত উত্তর।

পরীক্ষার মামলা

aabbcccc -> aaabbbccccc
ডোরবেল -> ddooorrbbeelll
উউউউউউউউউজ -> উউউউউউউউউউজ
q -> কিউ
xyxyxy -> xxyyxxyyxxyy
xxxyyy -> xxxxyyyy

সম্পর্কিত (রানের দৈর্ঘ্যটি বিজোড় হলে কেবলমাত্র অন্য একটি চরিত্র যুক্ত করুন)
মাইল্ডলি মিল্কিওয়েস্ট

উত্তর:


11

05 এ বি 1 ই , 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"

অনলাইনে বা পরীক্ষার স্যুট হিসাবে এটি ব্যবহার করে দেখুন

ঘেরটি একটি দুর্দান্ত নতুন অন্তর্নির্মিত; এটি আমি প্রথমবার ব্যবহার করেছি। খুব সুবিধাজনক ;)

05 এ বি 1 ই , 4 বাইট (প্রতিযোগী নয়)

γ€ĆJ

γসর্বশেষ আপডেট দ্বারা প্রতিস্থাপন করা হয়েছে ।


এখন পর্যন্ত ক্রেজিস্টেট বিল্টিনগুলির মধ্যে একটি হল এনক্লোজ।
এরিক আউটগল্ফার

3
পছন্দ করেছেন নাহ।
Okx

আমি মনে করি আপনি dddd"সংযুক্তি" কার্যকর হওয়ার পরে ব্যাখ্যায় স্ট্যাকের অ্যারের প্রথম উপাদানটি বোঝাচ্ছেন ।
এওসোলিং ফল 11

ওহ, এক মিনিট অপেক্ষা কর, কী হল Ć?
ম্যাজিক অক্টোপাস উরন

এছাড়াও, 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"


@ ল্যাকইনুন আমি আসলে এটি পোস্ট করার ঠিক পরে খুঁজে পেয়েছি
ফ্যাটালাইজ

আপনাকে সত্যিকার অর্থে ~মেটাপ্রেডিকেটস (বা এটিকে পোস্টফিক্স অপারেশনে পরিবর্তন করতে হবে) এর চেয়ে বেশি গুরুত্ব দেওয়া উচিত; আপনি যদি করেন, আপনি সাতটি মধ্যে এটি করতে পারে।



3

সি, 53 বাইট

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

এটি অনলাইন চেষ্টা করুন!


1
এই সমাধানটি পোস্ট করার জন্য আপনাকে ধন্যবাদ কারণ এটি আমাকে একটি সংক্ষিপ্ত সমাধান নিয়ে আসতে অনুপ্রাণিত করেছিল যা দ্বিতীয় পুতচর বাদ দেয়। সম্মত।
2501


3

জাপট , 8 বাইট

কোডের 7 বাইট, -Pপতাকাটির জন্য +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

জাভাস্ক্রিপ্ট (ES6), 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

পার্ল 6 , 18 বাইট

{S:g/)>(.)$0*/$0/}

চেষ্টা করে দেখুন

সম্প্রসারিত:

{   # bare block lambda with implicit parameter 「$_」

  S        # replace and return
  :global  # all occurrences
  /

    )>     # don't actually remove anything after this

    (.)    # match a character

    $0*    # followed by any number of the same character

  /$0/     # replace with the character (before the match)
}


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যদি এর সাথে পুনরাবৃত্তির কল অনুসারে aসমান হয় না । যদি কেবল একটি চর থাকে তবে ফলাফলটি এই চরের দ্বিগুণ।bb: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
^ এখন পরীক্ষিত। বিটিডব্লিউ, Gatherএকই চরিত্রের একাধিক রান থাকলে আসলে কাজ করে না (তবে ভাগ্যক্রমে Splitযাই হোক বাইট সংক্ষিপ্ত)
মার্টিন এন্ডার

(ওহ হ্যাঁ, আমি মনে মনে বোঝাচ্ছিলাম Split) আপনার প্রথম মন্তব্যে দুর্দান্ত নির্মাণ!
গ্রেগ মার্টিন

1

জাভা, 151 146 60 বাইট

String f(String s){return s.replaceAll("((.)\\2*)","$1$2");}
  • -২ বাইটস, @ ফ্রাইআমডেইজিগম্যানকে ধন্যবাদ
  • -86 by বাইট, কেভিন ক্রুজসেনকে ধন্যবাদ

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");}
কেভিন ক্রুইজসেন

@ কেভিন ক্রুজসেন এখনই ঠিক করেছেন, থেক্স।
খালেদ.কে।

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.
আমাদের সাইট ব্যবহার করে, আপনি স্বীকার করেছেন যে আপনি আমাদের কুকি নীতি এবং গোপনীয়তা নীতিটি পড়েছেন এবং বুঝতে পেরেছেন ।
Licensed under cc by-sa 3.0 with attribution required.