समान संख्या वाले अक्षर


19

शब्दों के अक्षर निष्पक्षता चाहते हैं।

उन्होंने एक वाक्य में समान संख्या में समान रूप से प्रकट होने का निर्णय लिया।

उदाहरण:

Priorities

हो जाएगा:

Ppprrioooritttieeesss

प्रत्येक अक्षर 3 बार प्रकट होता है, जैसा कि सबसे सामान्य पत्र था i, 3 बार दिखाई देना।

इससे कोई फर्क नहीं पड़ता कि आप दोहराए गए पत्रों को कहां रखते हैं, जब तक कि वे एक समान पत्र के बगल में न हों।

अर्थात:

Pppriooorritttieeesss ठीक है ('आर' अक्षर)

Ppprioororitttieeesss ठीक नहीं है ('r' अक्षर)

एक और उदाहरण:

invoice

हो जाएगा:

innvvooiccee

एक और उदाहरण:

Remittance Advice

हो जाएगा:

Rrremmmiitttaannncce Adddvvvice

इस चुनौती के लिए अंतरिक्ष, अल्पविराम, प्रश्न चिह्न, उद्धरण, आदि को अक्षर नहीं माना जाता है। केवल [a-zA-Z] पर विचार करने की आवश्यकता है। बस एक बार अंतरिक्ष पर्याप्त है, और अक्षरों का क्रम समान रहना चाहिए।

अक्षरों का पूंजीकरण मायने नहीं रखता, ऊपरी और निचले मामले को एक ही अक्षर के रूप में गिना जाता है। वह है: Pip2 'P' और 1 'I' है, इसलिए यह बन जाएगा Piip

यह है कि असंवेदनशील पत्र किसी भी रूप में हो सकते हैं, Piip=piip=piiP=PiiP

यह


2
हो सकता है कि मैं प्रश्न को पोस्ट करने से पहले सभी विवरणों को आयरन करने में मदद करने के लिए भविष्य की चुनौतियों के लिए सैंडबॉक्स का उपयोग करने का सुझाव
जो किंग

"Rrreeemmmiiitttaaannncccdddvvv" दिए गए उदाहरण में एक स्वीकार्य आउटपुट है (चूंकि अलग-अलग अक्षरों के क्रम के अनुसार (az के रूप में परिभाषित किया गया है) अभी भी बनाए रखा गया है)? (मेरा जैली का उत्तर वर्तमान में इस व्याख्या पर निर्भर करता है कि वह ठीक है।)
जोनाथन एलन

1
@JonathanAllan हम्म, हालांकि मैं ओपी के लिए विकल्प छोड़ता हूं, मुझे बहुत संदेह है। न केवल गैर-अक्षर वर्ण (स्थान) चले गए हैं, लेकिन आपने सभी पात्रों को एक ही स्थान पर रखने के बजाय एक-दूसरे के बगल में रख दिया है। आपका आउटपुट चुनौती को अलग और आसान बनाता है (imho)।
केविन क्रूज़सेन

1
@KevinCruijssen अंतरिक्ष बाईं ओर है - यह एक पत्र नहीं है इसलिए "का पालन करने की आवश्यकता नहीं है" और पत्रों का क्रम समान रहना चाहिए "
जोनाथन एलन

1
@JonathanAllan आह, अंतरिक्ष को ध्यान नहीं दिया, मेरा बुरा। मैं आपके जेली उत्तर में दिए गए तर्क को पूरी तरह से समझता हूं और इसके आधार पर यह वास्तव में एक वैध आउटपुट है, लेकिन मैं इसके बजाय वाक्यांश को बदलना चाहता हूं, फिर अपने आउटपुट को अनुमति देता हूं, क्योंकि यह पूरी तरह से चुनौती को बदल देगा।
केविन क्रूज़सेन

जवाबों:


5

05AB1E , 16 बाइट्स

lDáÙSйls¢Zα>×.;

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

व्याख्या

l                  # convert input to lowercase
 D                 # duplicate
  á                # keep only letters
   Ù               # remove duplicates
    S              # split to list of chars
     Ð             # triplicate
      ¹ls¢         # count the occurrences of each letter in lowercase input
          Zα       # absolute valuue with max occurrence
            >      # increment
             ×     # repeat each unique char that many times
              .;   # replace the first occurrence of the char in lowercase input with this

7

आर , 106 बाइट्स

function(s){for(A in L<-LETTERS)s=sub(A,strrep(A,max(x<-+s-+Map(gsub,L,'',s,T))-x[A]--1),s,T);s}
"+"=nchar

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

बेस आर दृष्टिकोण:


मैं प्रभावित हूँ कि आप बेस-आर के साथ 111 पर पहुंच गए!
जे। डीयू

@ J.Doe: मेरे मूल 137 बाइट्स समाधान को प्रकाशित करने के बाद, मैंने आपके द्वारा प्रेरित मेरे दृष्टिकोण को थोड़ा बदल दिया, और मैं मूल रूप से आपके समाधान में परिवर्तित हो गया, बस स्ट्रिंग हटाए जाने के साथ: D
digEmAll

1
ऑपरेटर के दुरुपयोग के साथ 106 बाइट्स । बेस-आर की जीत!
जे। डिऑट

@ J.Doe: कमाल है!
digEmAll

5

पर्ल 6 , 82 बाइट्स

-3 बाइट्स nwellnhof के लिए धन्यवाद

->\a{a.=lc.=subst($_,$_ x a.comb(/<:L>/).Bag.values.max+1-a.comb($_))for 'a'..'z'}

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

एक परिवर्तनशील स्ट्रिंग लेता है और इसे जगह में संशोधित करता है।

स्पष्टीकरण:

->\a{        # Anonymous code block that takes a mutable string            }
 a.=lc;  # Lowercase
                                                               for 'a'..'z'  # For each letter
 .=subst(                                                    )  # Substitute
          $_,   #The first occurrence of the letter with
             $_ x  #The letter repeated
                  a.comb(/<:L>/).Bag.values.max    # The count of the most common letter
                                                 +1  # Plus 1
                                                   -a.comb($_)  # Minus the count of that letter already in the string

आप .=जैसे ऑपरेटर को चेन कर सकते हैं a.=lc.=subst(...)। मुझे यकीन नहीं है कि मौजूदा पत्र के मामले को बदलने की अनुमति है या नहीं। के <:L>बजाय भी <:Ll>
nwellnhof

@nwellnhof हाँ, पूछने वाले का कहना है कि आउटपुट असंवेदनशील है
Jo King

5

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

s=>(m=g=F=>s.replace(/[a-z]/gi,c=>F(c.toLowerCase())))(c=>g[c]=c+c.repeat(m-g[c]),g(c=>m=(n=g[c]=-~g[c])<m?m:n))

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

टिप्पणी की गई

s => (                       // s = input string
  m =                        // m = max. number of occurrences of the same letter
  g = F =>                   // g = helper function taking a callback function F
    s.replace(               //     (also used to store the # of occurrences of each letter)
      /[a-z]/gi,             //   for each letter c in s:
      c => F(                //     invoke F():
        c.toLowerCase()      //       with c.toLowerCase()
      )                      //     end of call to F()
    )                        //   end of replace()
)(c =>                       // invoke g() (second pass):
  g[c] =                     //   update g[c] to a non-numeric value
    c +                      //   append c once, unconditionally
    c.repeat(m - g[c]),      //   and append c as many times as required to reach m
                             //   (any subsequent iteration with the same letter will
                             //   lead to c.repeat(m - g[c]) --> c.repeat(NaN) --> '')
  g(c =>                     //   invoke g() (first pass):
    m = (n = g[c] = -~g[c])  //     increment g[c], save the result in n
      < m ? m : n            //     and update m to max(m, n)
  )                          //   end of first pass
)                            // end of second pass

मेरे जेएस कौशल चूसते हैं, इसलिए मैं इस हिस्से के बारे में थोड़ा उलझन में हूं o[l] = // updates o[l] to a non-numeric value:। अगर मैं सही ढंग से समझता हूं, oतो एक पूर्णांक-सरणी में Fऔर gफ़ंक्शन है, लेकिन cपहले से उल्लेखित भाग में एक या अधिक बार चरित्र को पकड़े हुए स्ट्रिंग-सरणी में परिवर्तन होता है ? इसके अलावा, मुझे लगता है कि आप डिफ़ॉल्ट मान oहैं undefined, क्योंकि आप o[l]=-~o[l]इसके बजाय उपयोग कर रहे हैं ++o[l]?
केविन क्रूज़सेन

1
@KevinCruijssen हम चाहते हैं कि प्रत्येक पत्र केवल एक ही बार होने वाली घटनाओं की अधिकतम संख्या तक गद्देदार हो। o[l]एक पत्र को अद्यतन करके , उसी पत्र के साथ किसी भी बाद के पुनरावृत्ति m - o[l] --> NaN(पूर्णांक शून्य से पत्र) और ले जाएगा l.repeat(NaN) == ''। (अंतिम बिंदु के बारे में: हाँ, यह सही है।)
अरनौल्ड

आह ठीक है, स्पष्टीकरण के लिए धन्यवाद! :)
केविन क्रूज़सेन

(और मुझे पत्र के बजाय स्ट्रिंग कहना चाहिए था )
अरनौल्ड

5

जे , 33 56 46 बाइट्स

t=:~:tolower
(#~1+t*~:(*>./-])t*1#.e.)@toupper

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

~:tolowerदो बार उपयोग करने से बचने का कोई तरीका नहीं खोज सका ।

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

t=:~:tolower    Auxiliary function: isupper
     tolower    Is lowercase version of itself...
   ~:           different from itself?

(#~1+t*~:(*>./-])t*1#.e.)@toupper    Main function
                          toupper    Convert to uppercase
                      e.     Build 2D array by comparing to itself
                   1#.       Row-wise sum; Count occurrences
                 t*     A) Filter by isupper (needed for finding max count)
           >./-]        Compute max of A) minus each element of A)
       ~:          Nub sieve; 1 if first occurrence, 0 otherwise
          *        Filter first occurrences only
     t*       Filter by isupper again, to ban non-alphabets from duplicating
   1+         Add one to preserve given chars
 #~           Duplicate

5

आर + स्ट्रिंग, 108 बाइट्स

मैं बहुत अच्छा नहीं हूं stringr। निचले और ऊपरी मामले का मिश्रण लौटाता है क्योंकि सवाल कहता है कि यह कोई फर्क नहीं पड़ता।

function(x){for(l in L<-letters)x=sub(l,strrep(l,max(s<-stringr::str_count(tolower(x),L))-s[L==l]+1),x,T);x}

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

व्याख्या

function(x){
for(l in letters){ # Iterate through builtin vector "a", "b", "c"...
   # Generate a 26-long integer vector for how many a's, b's, c's in lower case string
  s = stringr::str_count(tolower(x),letters)
    # Take the max of this
  m = max(s)
    # Repeat the letter in the iteration enough times to make the word 'fair'
  new.l = strrep(l,m-s[letters==l]+1)
    # Substitute the first instance only of the letter in the string for the repeated letter
    # This is case insensitive (the T at the end)
    # Notice we calculate the max letter frequency each loop
    # This is inefficient but doesn't change the answer and avoids bytes
  x=sub(l,new.l,x,T);
  }
x # Return the substituted string
}

3

K4 , 35 बाइट्स

समाधान:

{x@o@<o:(&^x),/(|/#:'g)#'g:" "_=_x}

उदाहरण:

q)k){x@o@<o:(&^x),/(|/#:'g)#'g:" "_=_x}"Priorities"
"PPPrrioooritttieeesss"
q)k){x@o@<o:(&^x),/(|/#:'g)#'g:" "_=_x}"invoice"
"innvvooiccee"
q)k){x@o@<o:(&^x),/(|/#:'g)#'g:" "_=_x}"Remittance Notice"
"RRRemmmiittaaanncce Noootice"

स्पष्टीकरण:

एक अलग दृष्टिकोण के साथ गोल्फ हो सकता है, सोचता रहेगा

{x@o@<o:(&^x),/(|/#:'g)#'g:" "_=_x} / the solution
{                                 } / lambda taking implicit argument x
                                _x  / lowercase input
                               =    / group
                           " "_     / drop space from keys
                         g:         / save as g
                       #'           / take each
               (      )             / do this together
                  #:'g              / count occurances in each group
                |/                  / take the maximum
             ,/                     / flatten with
        (&^x)                       / indices where input is null (ie " ")
      o:                            / save as o
     <                              / indices to sort o ascending
   o@                               / apply these to o
 x@                                 / apply these indices to original input

3

चारकोल , 33 32 बाइट्स

⭆↧θ⁺§θκ×ι∧№βι∧⁼κ⌕↧θι⁻⌈Eβ№↧θλ№↧θι

इसे ऑनलाइन आज़माएं! लिंक कोड के वर्बोज़ संस्करण के लिए है। स्पष्टीकरण:

  θ                                 Input string
 ↧                                  Lower case
⭆                                   Map over characters and join
      κ                             Current index
     θ                              Input string
    §                               Original character
   ⁺                                Concatenate with
        ι                           Lowercased character
       ×                            Repeated
            ι                       Lowercased character
           β                        Lowercase alphabet
          №                         Count
         ∧                          Logical And
                   ι                Lowercased character
                  θ                 Input string
                 ↧                  Lower case
                ⌕                   Find
               κ                    Current index
              ⁼                     Equals
             ∧                      Logical And
                       β            Lowercase alphabet
                      E             Map over characters
                           λ        Current character
                          θ         Input string
                         ↧          Lower case
                        №           Count
                     ⌈              Maximum
                    ⁻               Minus
                               ι    Lowercased character
                              θ     Input string
                             ↧      Lower case
                            №       Count
                                    Implicitly print

3

जावा 11, 190 176 162 बाइट्स

s->{s=s.toUpperCase();char m=2,i=64,a[]=new char[127];for(int c:s.getBytes())m-=m+~++a[c]>>-1;for(;++i<91;)s=s.replaceFirst(i+"",repeat((i+""),m-a[i]));return s;}

-14 बाइट्स @Nevay को धन्यवाद ।

आउटपुट पूरे अपरकेस में है।

इसे ऑनलाइन आज़माएं। (नोट: उसी बाइट-काउंट के लिए String.repeat(int)अनुकरण किया जाता है repeat(String,int), क्योंकि जावा 11 अभी तक TIO पर नहीं है।)

स्पष्टीकरण:

s->{                      // Method with String as both parameter and return-type
  s=s.toUpperCase();      //  Convert the input-String to full uppercase
  char m=2,               //  Max occurrence (+1), starting at 2
       i=64,              //  Index integer, starting at 64 ('A'-1)
       a[]=new char[127]; //  Create a count-array of size 127 (printable ASCII chars)
  for(int c:s.getBytes()) //  Loop over the characters of the String as integers
    m-=m+~++a[c]>>-1;     //   Increase the occurrence-counter of the char by 1 first
                          //   And if it's larger than the max-2, increase the max by 1
  for(;++i<91;)           //  Loop `i` in the range ['A', 'Z']
    s=s.replaceFirst(i+"",//   Replace the first char `i` in the string with:
       (i+"").repeat(     //   That same character repeated
        m-a[i]));         //   The max(+1) minus its array-occurrence amount of times
  return s;}              //  Then return the now modified String as result

क्या आप बाइट के लिए var का उपयोग कर सकते हैं?
क्विंटेक

@Quintec के बजाय charआप का मतलब है? दुर्भाग्यवश नहीं। varकेवल एकल फ़ील्ड के लिए उपयोग किया जा सकता है। तो इसके बजाय char m=1,i=127,a[]=new char[i];यह होगा var m=1;var i=127;var a=new char[i];यहां जावा 10 के साथ आप क्या कर सकते हैं और क्या नहीं कर सकते हैं की एक उपयोगी टिप var(मैं intलूप के साथ बदल सकता था var, लेकिन बाइट-काउंट एक ही रहेगा।)
केविन क्रूज़सेन

गोच, धन्यवाद। अभी भी पता नहीं है कि जावा 9/10/11 कैसे काम करता है, हाहा, मैं 8 से चिपका
रहूंगा

@Quintec जावा 9 मैं भी वास्तव में नहीं मिलता है, क्योंकि यह मुख्य रूप से उस REPL पर केंद्रित है। जावा 10 को छोड़कर ज्यादातर जावा 8 के समान है var। और जावा 11 में बमुश्किल सभी कोडगुल्फ़ में कोई बदलाव है, केवल उस String.repeatविधि को छोड़कर जो मैंने पहले ही लोड का उपयोग किया है। इसमें नया String.stripLeadingया है String.stripTrailing, जो trimकेवल प्रमुख / अनुगामी व्हाट्सएप की तरह कार्य करता है , और String.isBlank()जो String.trim().isEmpty()केवल (खाली या व्हाट्सएप) के समान है।
केविन क्रूज़सेन 11

1
-14 बाइट्स:s->{s=s.toUpperCase();char m=2,i=91,a[]=new char[127];for(int c:s.getBytes())m-=m+~++a[c]>>-1;for(;i-->65;)s=s.replaceFirst(i+"",repeat((i+""),m-a[i]));return s;}
नेवाय

3

जाप -h , 27 बाइट्स

-3 बाइट्स @ETHproductions से

;v
ñ oC ó¥ ú £=iXÎpXèS)UbXg

समझाने की कोशिश कर रहा है

;v                          Convert implicit input to lowercase
ñ oC ó¥ ú £=iXÎpXèS)UbXg      Main function. Implicit lowercase input => "priorities"
ñ                           Sort => "eiiioprrst"
 oC                         Remove non alphabetical chars
   ó¥                       Split on different letters => ["e","iii","o","p","rr","s","t"]
     ú                      Right-pad each to the length of the longest with space => ["e  ","iii","o  ","p  ","rr ","s  ","t  "]
       £                    For each X in this array:
             XèS              Count the number of spaces in X
          XÎ                  Get the first character in X
            p   )             Repeat it (number of spaces) times
                              example the mapped value "e  " will become "ee"
         i                    Insert this into U at
                 UbXg           the first index of (first character in X) in U
        =                     Set U to the result

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


1
आशा है कि आपको कोई आपत्ति नहीं है, मैंने स्पष्टीकरण के एक हिस्से का विस्तार किया (एक पंक्ति जो यह बता रही थी कि 10 वर्ण एक साथ क्या करते हैं: P) úचाल प्रतिभाशाली है, btw :-)
ETHproductions

@ETHproductions मैं इसकी सराहना करता हूं। Im अंग्रेजी में बहुत अच्छा नहीं है इसलिए धन्यवाद
लुइस felipe De jesus Munoz

1
दुर्भाग्य से, यह विफल होता है जब इसमें गैर-अक्षर शामिल होते हैं (उन्हें बदला नहीं जाना चाहिए)। एक साधारण फिक्स को सम्मिलित करना होगा ñ oC ó¥, हालांकि इसमें वापस जोड़ने की आवश्यकता होती है ;...
ETHproductions

रुको ... जब से ñतार पर काम किया है ?! @ETHproductions, कृपया मुझे बताएं कि यह एक हालिया जोड़ है और मैं इस समय इसे देख नहीं रहा हूँ!
झबरा

@ सहज रूप से यह 2.5 महीने पहले था - लेकिन चिंता मत करो, यहां तक ​​कि मैं इसे इस जवाब तक मौजूद नहीं भूल सकता ;-)
ETHproductions

2

रूबी , 89 बाइट्स

->s{1while(a=s.scan /\w/).map(&g=->x{s.scan(/#{x}/i).size}).uniq[1]&&s[a.min_by &g]*=2;s}

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

मैंने विभिन्न तरीकों की कोशिश की, लेकिन क्या वास्तव में बहुत सारे बाइट्स बचाता है एक समय में एक चरित्र को जोड़ रहा है।

किस तरह:

->s{
    1while                             # 1 is a nop to the while
    (a=s.scan /\w/)                    # For all the letters in the string
    .map(&g=->x{s.scan(/#{x}/i).size}) # Count occurrences ignoring case.
    .uniq[1]                           # Break out of loop if all equals
    &&s[a.min_by &g]*=2                # Otherwise duplicate the letter
                                       #  with the lowest count
    ;s}                                # Return the string

2

पॉवर्सशेल 6, 123 बाइट्स

यह एक चार रेंज का उपयोग करता है 'a'..'z'। नीचे पिछली पॉवर्सशेल की स्क्रिप्ट देखें।

param($s)for(;'a'..'z'|%{
if($d=($s-replace"[^$_]").Length-$n){if($d-gt0){1}else{$s=$s-replace"^(.*$_)","`$1$_"}}}){$n++}$s

समझाया परीक्षण स्क्रिप्ट:

$f = {

param($s)                               # a parameter string
for(;                                   # loop while exists at least one letter...
'a'..'z'|%{                             # for each letter
    $d=($s-replace"[^$_]").Length-$n    # let $d is a difference between a number of current letter and current $n 
    if($d-gt0){                         # if the difference > 0
        1                               # then return a object to increase $n on next iteration
    }
    if($d-lt0){                         # if the differenct < 0
        $s=$s-replace"^(.*$_)","`$1$_"  # append the current letter after a last instance of the letter. Use "^(.*?$_)" regexp to append it after a first instance of the letter.
    }
}){
    $n++                                # increment $n if exists at least one letter number of witch greather then $n
}                                       # and make next iteration of the 'for'.

$s                                      # return modified string if all letters in the string occur the same number of times

}

@(
    ,('Priorities', 'Ppprrioooritttieeesss', 'PPPriooorritttieeesss')
    ,('invoice', 'innvvooiccee')
    ,('Remittance Advice', 'Rrremmmiitttaannncce Adddvvvice', 'RRRemmmitttannnce Aadddvvviicce')
) | % {
    $s,$e = $_
    $r = &$f $s
    "$($r-in$e): $r"
}

आउटपुट:

True: Pppriooorritttieeesss
True: innvvooiccee
True: Rrremmmitttannnce Aadddvvviicce

पॉवर्सशेल 5.1-, 133 बाइट्स

param($s)for(;97..122|%{$_=[char]$_
if($d=($s-replace"[^$_]").Length-$n){if($d-gt0){1}else{$s=$s-replace"^(.*$_)","`$1$_"}}}){$n++}$s

2

लाल , 252 बाइट्स

func[s][a: charset[#"a"-#"z"#"A"-#"Z"]t: parse s[collect[any[keep a | skip]]]m: copy
#()foreach c t[c: form c either n: m/:c[m/:c: n + 1][m/:c: 1]]d: last sort extract next
to-block m 2 foreach c s[prin c: form c if n: m/:c[loop d - n[prin c]m/:c: d]]]

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

हास्यास्पद रूप से लंबा समाधान ...

स्पष्टीकरण:

f: func [ s ] [
    a: charset [ #"a" - #"z" #"A" - #"Z" ]   ; letters
    t: parse s [                             ; parse the string 
        collect [ any [ keep a | skip ] ]    ; and keep only the letters
    ]
    m: copy #()                              ; initialize a map
    foreach c t [                            ; for each character in t
        c: form c                            ; the character as a string
        either n: select m c [ m/:c: n + 1 ] ; increase the count if already in map
                             [ m/:c: 1 ]     ; otherwise create a map entry with count 1 
    ]
    d: last sort extract next to-block m 2   ; convert the map to a block; extract only the 
                                             ; numbers and take the last of the sorted block
    foreach c s [                            ; for each character in the input
        c: form c                            ; the character as a string
        prin c                               ; print it (with no space nor newline)
        if n: select m c [                   ; if c is a key in the map
            loop d - n [ prin c ]            ; print the character again up to d times 
            m/:c: d                          ; set the count to max (flag it as used)
        ]
    ]
]

2

जावास्क्रिप्ट (Node.js) , 140 137 बाइट्स

x=>[...x=x.toLowerCase()].map(F=c=>(F[c]=-~F[c],F[c]>w?w=F[c]:w,c),w=0).map(c=>x=x.replace(c,c.repeat(c>'`'&c<'{'?w-F[c]+1:1),F[c]=w))&&x

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

+33 बाइट्स कभी खत्म न होने वाली अतिरिक्त बाधाओं के लिए मेरे पहले समाधान से। जेएस आपको पता है कि मामले-असंवेदनशील स्ट्रिंग जोड़तोड़ पर बेकार है।

-3 बाइट्स थैंक्स @Arnauld

व्याख्या

x =>                                     // The function.
  [...x = x.toLowerCase()].map(f = c => (// - Iterate among each character...
                                         // - Additional constraint 2
    f[c] = -~f[c],                       //   - Add one to the character counter
    f[c] > w ? w = f[c] : w,             //   - Update the maximum count if necessary
    c                                    //   - Return back the character for the use in
                                         //     the next map function
  ), w = 0)                              // - The counters
  .map(c =>                              // - Iterate again...
    x = x.replace(                       //   - Repeat the first appearance of
      c,                                 //   - Each character
      c.repeat(                          //   - Needed number times
        c > '`' & c < '{'                //   - Additional constraint 1
        ? w - f[c] + 1                   //   - If this is letter, repeat
        : 1                              //   - If not, stay as is
      ),                                 //   - That should've been clearly stated
      f[c] = w                           //   - And set the counter so that no further 
                                         //     replacements are done on this character 
    )                                    //   - (w - f[c] + 1 = 1 in further iterations)
  ) && x                                 // - Return the result

मिश्रित मामले के इनपुट को संभालने के लिए समाधान की आवश्यकता होती है।
झबरा

@ शिग्गी मुझे लगता है कि आपकी टिप्पणी के बाद चुनौती को संपादित कर दिया गया है। ऐसा लगता है जैसे आउटपुट का मामला मायने नहीं रखता।
Arnauld


@Arnauld ओह, मैं कभी-कभी आपको fअस्थायी भंडारण के रूप में उपयोग करते हुए देखता हूं, इसलिए मैंने सोचा कि यह ठीक है
शायरु असाकोतो

map()कॉलबैक फ़ंक्शंस स्टोरेज के लिए उपयोग करना सुरक्षित हैं, क्योंकि वे एक स्थानीय दायरे में परिभाषित हैं। मुख्य कार्य का उपयोग करना - जो विश्व स्तर पर परिभाषित है - अधिक खतरनाक है। यहां, आप पहले कॉलबैक का उपयोग कर सकते हैं map(), जो आपको 137 बाइट्स में वापस लाता है ।
अरनौलड

2

भूसी , 15 बाइट्स

ḟ§Ë#f√MṘO´πL¹m_

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

जानवर बल, बहुत धीमी गति से।

व्याख्या

ḟ§Ë#f√MṘO´πL¹m_  Implicit input, say s = "To do"
             m_  Convert to lowercase: t = "to do"
           L¹    Length of s: 5
         ´π      All length-5 combinations of [1..5]:
                   [[1,1,1,1,1], [1,1,1,1,2], [2,1,1,1,1], ..., [5,5,5,5,5]]
        O        Sort them lexicographically:
                   [[1,1,1,1,1], [1,1,1,1,2], [1,1,1,1,3], ..., [5,5,5,5,5]]
      MṘ         For each, replicate letters of t that many times:
                   ["to do", "to doo", "to dooo", ..., "tttttooooo     dddddooooo"]
ḟ                Find the first string that satisfies this:
                   Example argument: x = "tto ddo"
    f√             Letters of x: "ttoddo"
  Ë                They have equal
 § #               number of occurrences in x: true (all have 2).

परिणाम प्राप्त नहीं कर सके
asmgx

@asmgx यह कार्यक्रम वास्तव में बहुत धीमा है। यह TIO पर लंबाई 8 और उससे अधिक समय के इनपुट के लिए समय लगता है, क्योंकि यह 1 मिनट के बाद गणना को मारता है। यदि आप लंबे समय तक प्रतीक्षा करते हैं तो ऑफलाइन दुभाषिया को एक परिणाम देना चाहिए (शायद लंबाई -10 इनपुट के लिए कई घंटे)।
जर्बर्ग

2

पर्ल 6 , 77 70 बाइट्स

{s:i|$($!.min(*{*}).key)|$/$/|until [==] ($!=.lc.comb(/<:L>/).Bag){*}}

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

किसी वर्ण को सम्मिलित करने के लिए GB के दृष्टिकोण को लेना, जब तक कि सभी वर्ण समान संख्या में न दिखाई दें। एक स्ट्रिंग प्राप्त करता है जिसे इन-प्लेस संशोधित किया जाता है।

यदि अंडरस्कोर को अक्षरों की तरह माना जा सकता है, तो रेगीक्स बन सकता है /\w/, जिससे दो बाइट्स बचती हैं।

व्याख्या

{
                    .lc.comb(/<:L>/).Bag          # Create Bag of letter/count pairs
                ($!=                    )         # Store temporarily in $!
 ... until [==]                          .values  # Until all counts are equal
 s:i|                      |    |                 # Replace (ignoring case)
     $($!.min(*.value).key)                       # letter with minimum count
                            $/$/                  # with itself doubled
}

@JoKing ऐसा लगता है कि आपका सुधार पुराने संस्करण पर आधारित है, इससे पहले कि मैंने इस {*}चाल की खोज की ।
nwellnhof

तो यह "के लिए एक शॉर्टकट की तरह .value(s)है? साफ है, मैं अपने पुराने समाधानों में से कुछ को अद्यतन करने के लिए हो सकता है
जो राजा



1

पायथ, 31 30 बाइट्स

JeSm/Qd=r0QVQ=tQ=+k*N-J/+kQN)k

इसे यहाँ आज़माएँ

व्याख्या

JeSm/Qd=r0QVQ=tQ=+k*N-J/+kQN)k
       =r0Q                        Convert input to lowercase.
JeSm/Qd                            Find the count of the most common character.
           VQ               )      For each character in the input...
             =tQ                   ... remove that character from the input...
                =+k*N-J/+kQN       ... append copies to k until we have enough.
                             k     Output.

1

सी (जीसीसी) - 175 बाइट्स

f(char*s){int c[999]={0},i=0,m=0,k,L;while((L=s[i++])&&(k=++c[L<97?L+32:L]))m=k>m?k:m;i=0;while(L=s[i++])for(L=L<97&&L>64?L+32:L,putchar(L);isalpha(L)&&++c[L]<=m;)putchar(L);}

Ungolfed

f(char *s) {
  int c[999]={0},i=0,m=0,k,L;                      // Array used like a dictionary, temp vars
  while((L=s[i++])&&(k=++c[L<97?L+32:L]))          // store letter counts
    m=k>m?k:m;                                     // calculate max occurance
  i=0;                                             // reset string index
  while(L=s[i++])                                  // iterate string
    for(L=L<97&&L>64?L+32:L,putchar(L);isalpha(L)&&++c[L]<=m;) // set character L to lowercase if in alphabet, print always once, repeat if in alphabet
      putchar(L);                                  // print character
}

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


0

कोटलिन एंड्रॉइड, 413 बाइट्स

var l: List<Char> = w.toList().distinct();val h = HashMap<Char, Int>();var x='m';var n=0;for(z in l.indices){var c=0;for (i in 0.rangeTo(w.length-1)){if(l[z]==(w[i]))c++};h.put(l[z],c);if(n<c){n=c}};for(entry in h){h.replace(entry.key,n-entry.value)};var v=ArrayList<Char>();for(i  in 0.rangeTo(w.length-1)){if(h.containsKey(w[i])){for(p in 0.rangeTo(h.get(w[i])!!)){v.add(w[i])};h.remove(w[i])}else{v.add(w[i])}}

ऑनलाइन कोशिश करें

स्पष्टीकरण चरण 1 -> विभिन्न वर्णों की सूची का चयन करें। चरण 2 -> स्ट्रिंग में हर चार की गिनती प्राप्त करें और अधिकतम चार आवृत्ति चुनें। चरण 3 -> अधिकतम चार आवृत्ति आवृत्ति के संबंध में वर्णों की आवृत्ति में अंतर प्राप्त करें चरण 4 -> स्ट्रिंग में पदों के संबंध में वर्णों को रखें। हैप्पी सॉल्विंग!



0

PHP ,185 173 170 बाइट्स

function($s){$m=max($a=count_chars($s=strtolower($s),1));foreach(str_split($s)as$c)$o.=str_repeat($c,($b=$a[$d=ord($c)])!=($a[$d]=$m)&&$d>96&&$d<123?$m-$b+1:1);return$o;}

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

अनगोल्डेड (और अन-टर्नरीड और अन-ऑप्टिमाइज़्ड)।

function f($s) {
    $s = strtolower( $s );
    $a = count_chars( $s, 1 );
    $m = max( $a );
    foreach( str_split( $s ) as $c ) {
        if ( $c < 'a' or $c > 'z') {           // is non a-z
            $n = 1;
        } elseif ( $a[ord($c)] == $m ) {    // already has max number
            $n = 1;
        } else {
            $n = $m - $a[ord($c)] + 1;       // add this many chars
        }
        $o .= str_repeat( $c, $n );
        $a[ord($c)] = $m;                   // has reached the max
    }
    return $o; 
}
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.