同じ数字


19

言葉の文字は公平を求めています。

彼らは、文中に同じ回数だけ等しく現れることに決めました。

例:

Priorities

となります:

Ppprrioooritttieeesss

最も一般的な文字であるように、各文字は3回表示され、i3回表示されます。

同じ文字の隣にある限り、繰り返し文字を配置する場所は重要ではありません。

すなわち:

Pppriooorritttieeesss OK(「r」の文字)

Ppprioororitttieeesss OKではありません(「r」文字)

もう一つの例:

invoice

となります:

innvvooiccee

もう一つの例:

Remittance Advice

となります:

Rrremmmiitttaannncce Adddvvvice

スペース、コンマ、疑問符、引用などは、このチャレンジの文字とはみなされません。[a-zA-Z]のみを考慮する必要があります。一度スペースが十分になり、文字の順序が同じままである必要があります。

文字の大文字小文字は関係ありません。大文字と小文字は同じ文字としてカウントされます。つまり、Pip2つの「P」と1つの「I」があるため、になりPiipます。

大文字と小文字を区別しない文字はどのような形式でもかまいませんが、 Piip=piip=piiP=PiiP

これは


2
私が使用することをお勧めかもしれないサンドボックスをメインに質問を投稿する前にすべての詳細手伝っ鉄への将来の課題のために
ジョー・キングを

「rrreeemmmiiitttaaannncccdddvvv」は、与えられた例で受け入れられる出力ですか(異なる文字(azとして定義される)の順序は維持されているため)?(現在、私のゼリーの回答は、この解釈がOKであることに依存しています。)
ジョナサンアラン

1
@JonathanAllanうーん、私はOPに選択を任せますが、私はそれを非常に疑います。文字以外の文字(スペース)がなくなるだけでなく、すべての文字を同じ場所に置くのではなく、隣り合わせに配置しました。あなたの出力は、チャレンジを異なるものにし、より簡単にします(imho)。
ケビンCruijssen

1
@KevinCruijssenスペースは左側にあります-手紙ではないため、「そして手紙の順序は同じままにする必要があります」
ジョナサンアラン

1
@ジョナサンアランああ、スペースに気付かなかった、私の悪い。あなたがゼリーの答えで提供した理由を完全に理解し、それが実際に有効な出力であることに基づいて、私はむしろフレーズ自体が変更され、それからチャレンジ自体を完全に変更するので、出力を許可することを望みます。
ケビンCruijssen

回答:


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

R、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

オンラインでお試しください!

ベースRアプローチ:

  • @ J.Doe R + stringrアプローチからいくつかのアイデアを盗み、26バイト節約しました!
  • R +演算子を悪用する@ J.Doeの提案を使用して保存された別の5バイト

base-Rで111に到達したことに感心しました!
J.Doe

@ J.Doe:オリジナルの137バイトソリューションを公開した後、あなたに触発されたアプローチを少し変更し、ストリンガーを削除しただけで基本的にソリューションに収束しました:D
digEmAll

1
オペレーター乱用を伴う106バイト。Base-Rが勝利!
J.Doe

@ J.Doe:すごい!
digEmAll

5

Perl 6、82バイト

nwellnhofのおかげで-3バイト

->\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ええ、アスカーは出力は大文字と小文字を区別しないと言います
ジョーキング

5

JavaScript(ES6)、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

私のJSスキルは下手なので、この部分について少し混乱していますo[l] = // updates o[l] to a non-numeric value。私が正しく理解している場合oFおよびg関数の整数配列ですが、c前述の部分で1 回以上の文字を保持する文字列配列に変更されていますか?また、私は、の値が推測oされundefined、使用しているため、デフォルトではo[l]=-~o[l]代わりのを++o[l]
ケビンクルーッセン

1
@KevinCruijssen各文字に一度だけ最大出現回数までパディングするようにします。o[l]文字に更新することにより、同じ文字での後続の反復はm - o[l] --> NaN(整数マイナス文字)およびになりl.repeat(NaN) == ''ます。(最後の点について:はい、それは正しいです。)
アーナルド

ああ、説明をありがとう!:)
ケビンクルーイッセン

(と私は言っている必要があり、文字列ではなく文字を
アルノー

5

J33 56 46バイト

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

オンラインでお試しください!

~:tolower2回使用するのを避ける方法が見つかりませんでした。

使い方

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

R +ストリンガー、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

Java 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;}

@Nevayのおかげで-14バイト。

出力は完全に大文字です。

オンラインでお試しください。(注:Java 11はまだTIO上にないため、同じバイト数と同じString.repeat(int)ようrepeat(String,int)にエミュレートされます。)

説明:

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

@Quintecあなたの代わりにchar?残念だけど違う。var単一のフィールドにのみ使用できます。そのため、代わりにchar m=1,i=127,a[]=new char[i];なりますvar m=1;var i=127;var a=new char[i];ここでは、Java 10でできることとできないことの有用なヒントを示しますvarintループ内をvarで置き換えることもできますが、バイトカウントは同じままです。)
ケビンクルーイッセン

ガッチャ、ありがとう。Java 9/10/11がどのように機能するのかまだわかりません、ハハ、8に固執します; p
Quintec

@Quintec Java 9私もあまり得られません。主にそのREPLに焦点を合わせているからです。Java 10は、を除いてJava 8とほとんど同じvarです。また、Java 11にはString.repeat、私がすでに多くの時間を使用した方法を除いて、すべてのcodegolf関連でほとんど変更がありません。また、新しいString.stripLeadingor String.stripTrailingがありtrimますが、String.isBlank()これは先頭/末尾の空白のみのように機能し、String.trim().isEmpty()(空または空白のみ)と同じです。
ケビンクルーッセン

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;}
Nevay

3

Japt -h、27バイト

@ETHproductionsから-3バイト

;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文字について約一度に説明した1行:P)úトリックは天才です、ところで:
ETHproductions

@ETHproductions感謝しています。英語が苦手なので、ありがとう
ルイス・フェリペ・デ・イエス・ムニョス

1
残念ながら、非文字が関係していると失敗するようです(変更しないでください)。単純な修正は、を挿入することですñ oC ó¥。ただし、;...に追加し直す必要があります。
ETHproductions

待ってください...いつからñストリングスが機能したのですか?@ETHproductions、それが最近追加されたことを教えてください、私はこの間ずっと見逃していません!
シャギー

@Shaggyどうやら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}

オンラインでお試しください!

さまざまなアプローチを試しましたが、実際に多くのバイトを節約できるのは、一度に1文字を追加することです。

どうやって:

->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

Powershell 6、123バイト

char範囲を使用します'a'..'z'。以下の以前のPowershellのスクリプトを参照してください。

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

Powershell 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

JavaScript(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バイト。JSは、大文字と小文字を区別しない文字列操作を知っています。

-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

ソリューションは、大文字と小文字が混在する入力を処理できる必要があります。
シャギー

@Shaggyチャレンジはコメントの後に編集されたと思います。出力の大文字小文字は関係ないようです。
アーナルド

一方、関数は再利用可能である必要がありますが、ここではそうではありません。
アーナルド

@Arnauldああ、私は時々あなたが使用して見るfことが大丈夫です、私は思ったので、一時的な記憶としてSを
Shieru Asakoto

map()コールバック関数はローカルスコープで定義されているため、ストレージに使用しても安全です。グローバルに定義されているメイン関数の使用は、より危険です。ここでは、最初ののコールバックを使用して、137バイトにmap()戻すことができます
アーナルド

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プログラムは本当に遅いです。1分後に計算を強制終了するため、長さが8以上の入力のTIOでタイムアウトするようです。十分長い間(おそらく長さ10の入力に対して数時間)待機すると、オフラインインタープリターが結果を返すはずです。
ズガルブ

2

Perl 6の77の 70バイト

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

オンラインでお試しください!

すべての文字が同じ回数表示されるまで文字を挿入するGBのアプローチを採用しています。インプレースで変更された文字列を受け取ります。

アンダースコアを文字のように扱うことができる場合、正規表現はになり/\w/、2バイト節約されます。

説明

{
                    .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

だから、のショートカットのようなs」があること.value(s)?それはニート、私は私の古いソリューションの一部を更新する必要があります
ジョー・キング



1

Pyth、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

C(GCC) -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);}

非ゴルフ

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

Kotlin Android、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->最大char頻度に関してcharsの頻度の差を取得ステップ4-> string内の位置に関してcharsを配置します。ハッピーソルビング!



0

PHP185 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; 
}
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.