大文字と小文字の比率


28

このチャレンジでは、あなたとあなたの友人は大文字と小文字のどちらが良いかについて議論していますか?調べるには、これを行うプログラムを作成します。

エソランは友達を怖がらせ、冗長なコードは怖いので、コードはできるだけ短くする必要があります。


PrOgRaMiNgPuZzLeS & CoDe GoLf
0.52 uppercase

DowNGoAT RiGHtGoAt LeFTGoat UpGoAT
0.58 uppercase

Foo BaR Baz
0.56 lowercase

仕様書

入力はASCII文字のみで構成されます。アルファベット以外の文字はすべて無視する必要があります。各ケースには少なくとも1つの文字があります

出力は、アルファベット文字の合計量の中で最も頻繁に現れるケースの量でなければなりません。少なくとも小数点以下2桁まで正確な小数でなければなりません。大文字がより頻繁に現れる場合、出力はuppercase、またはで終わる必要がありlowercaseます。

大文字と小文字が同じ量になることはありません。


7
エソランは私の友人を怖がらせません。それは私のコードが非常に冗長になる可能性があるということですか?
アレックスA.

@AlexA。冗長コードは怖いので、コードもゴルフする必要があります。
ダウンゴート

16
ああ、私は繰り返し起こるJavaの悪夢を忘れていました。
アレックスA.

4
ケースが1つだけの入力はありますか?
マナトワーク

1
「少なくとも小数点以下2桁まで正確」では、少なくとも小数点以下2桁を印刷する必要がありますか、またはゼロの2番目の小数点を省略できますか?
hvd

回答:


2

Pyth-40バイト

ベクトル化された文字列フォーマットを使用したのはこれが初めてで、これは非常にクールです。

Kml-zrzd2eS%Vm+cdsK" %sercase"Kc"upp low

テストスイート


7

JavaScript(ES6)87バイト

編集 1バイトの保存THX ETHProductions
編集 1以上のバイト保存THXのl4me

無名関数。長いが、これ以上ゴルフする方法を見つけられなかった

s=>(l=t=0,s.replace(/[a-z]/ig,c=>l+=++t&&c>'Z'),l/=t,l<.5?1-l+' upp':l+' low')+'ercase'

少ないゴルフ

s=>( // arrow function returning the value of an expression
  // here I use comma for clarity, 
  // in the golfed version it's all merged in a single expression
  t = 0, // counter for letters
  l = 0, // counter for lowercase letters 
  s.replace(
    /[a-z]/ig, // find all alphabetic chars, upper or lowercase
    c => // execute for each found char (in c)
        l += ++t && c>'Z', // increment t, increment l if c is lowercase
  ),
  l /= t, // l is the ratio now
  ( l < .5 // if ratio < 1/2
    ? (1-l) +' upp' // uppercase count / total (+" upp")
    : l +' low'     // lowrcase count / total (+" low")
  ) + 'ercase' // common suffix
)

を使用すると1バイト節約できると思います&&` ${t-l>l?1-l/t+'upp':l/t+'low'}ercase`
ETHproductions

また、c=>l+=++t&&c>'Z'動作すると思います...?
ETHproductions

@ETHproductionsあなたの最初のヒントは役に立たないようです、2番目は賢いです、thx
edc65

1
説明のないバージョンを見ることができますか?
チョイス

@Cyoce説明を追加-実際には、それのシンプルな
edc65

4

CJam、47 45バイト

q__eu-\_el-]:,_:+df/" low upp"4/.+:e>"ercase"

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

ゴルフが長すぎない...

説明

q               e# Read input.
__eu-           e# Get only the lowercase characters.
\_el-           e# Get only the uppercase characters.
]:,             e# Get the lengths of the two strings.
_:+             e# Sum of the lengths.
df/             e# Lengths divided by the sum of the lengths.
" low upp"4/.+  e# Append the first number with " low" and the second " upp"
:e>             e# Find the maximum of the two.
"ercase"        e# Output other things.

4

Japt、58バイト

A=Uf"[a-z]" l /Uf"[A-Za-z]" l)>½?A+" low":1-A+" upp" +`ÖÐ

(注:SEはの前Öに特殊文字を削除したため、適切なコードを取得するにはリンクをクリックしてください)


よくやった!最初の正規表現(ドル記号を含む)はに"[a-z]"、2番目の正規表現はに置き換えることができます"A-Za-z"0.5に等しい½。最後の引用符を削除することもできます。
ETHproductions

上記の変更と文字列圧縮により、58 A=Uf"[a-z]" l /Uf"[A-Za-z]" l)>½?A+" low":1-A+" upp" +`\x80ÖÐが得られOc"ercaseます。最後の3バイトの未加工バージョンはで取得できます。
ETHproductions

@Eth \x80は何もしなかったようで、ÖÐ「ケース」を生成しました。ところで、私自身のmod、感謝のヒントのために提供
nicaelを

@ETH OK、そのinvisi-charを使用することができました:)
nicael

残念ながら、正規表現パーサーを機能させるには、文字列内でバックスラッシュを二重にする必要があります。この場合、"\w"単にすべてwのに"\\w"一致し、すべてに一致しますA-Za-z0-9_。だから、あなたは維持する必要があると思う"[a-z]"
ETHproductions

4

R133 123 118 108 106105 104バイト

@ovsのおかげで10バイト、@ Giuseppeのおかげで8バイト、@ ngmのおかげで再び10バイトダウンしました。この時点で、私はバイトを提供し、他の人がそれらを外すという本当に共同の努力です;)

function(x)cat(max(U<-mean(utf8ToInt(gsub('[^a-zA-Z]',"",x))<91),1-U),c("lowercase","uppercase")[1+2*U])

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


さらに1バイト削り落としました。
JayCe

3

MATL、49 50バイト

チャレンジより前の言語の現在のバージョン(4.1.1)を使用します。

jt3Y2m)tk=Ymt.5<?1w-YU' upp'h}YU' low'h]'ercase'h

>> matl
 > jt3Y2m)tk=Ymt.5<?1w-YU' upp'h}YU' low'h]'ercase'h
 > 
> PrOgRaMiNgPuZzLeS & CoDe GoLf
0.52 uppercase

>> matl
 > jt3Y2m)tk=Ymt.5<?1w-YU' upp'h}YU' low'h]'ercase'h
 > 
> Foo BaR Baz
0.55556 lowercase

説明

j                   % input string
t3Y2m)              % duplicate. Keep only letters
tk=Ym               % duplicate. Proportion of lowercase letters
t.5<?               % if less than .5
    1w-             % compute complement of proportion
    YU' upp'h       % convert to string and append ' upp'
}                   % else
    YU' low'h       % convert to string and append ' low' 
]                   % end
'ercase'            % append 'ercase'

3

ジュリア、76 74バイト

s->(x=sum(isupper,s)/sum(isalpha,s);(x>0.5?"$x upp":"$(1-x) low")"ercase")

これは、文字列を受け入れて文字列を返すラムダ関数です。呼び出すには、変数に割り当てます。

ゴルフをしていない:

function f(s::AbstractString)
    # Compute the proportion of uppercase letters
    x = sum(isupper, s) / sum(isalpha, s)

    # Return a string construct as x or 1-x and the appropriate case
    (x > 0.5 ? "$x upp" : "$(1-x) low") * "ercase"
end

edc65のおかげで2バイト節約されました!


1
Uは確実に使用して2バイト保存することができますercase代わりにcase
edc65

@ edc65素晴らしいアイデア、ありがとう!
アレックスA.

3

Perl 6の 91の70 69 63   61バイト

{($/=($/=@=.comb(/\w/)).grep(*~&' 'ne' ')/$/);"{$/>.5??$/!!1-$/} {<low upp>[$/>.5]}ercase"} # 91
{$/=m:g{<upper>}/m:g{\w};"{$/>.5??$/!!1-$/} {<low upp>[$/>.5]}ercase"} # 70
{"{($/=m:g{<upper>}/m:g{\w})>.5??$/!!1-$/} {<low upp>[$/>.5]}ercase"} # 69
{"{($/=m:g{<upper>}/m:g{\w})>.5??"$/ upp"!!1-$/~' low'}ercase"} # 63

{"{($/=m:g{<:Lu>}/m:g{\w})>.5??"$/ upp"!!1-$/~' low'}ercase"} # 61

使用法:

# give it a lexical name
my &code = {...}

.say for (
  'PrOgRaMiNgPuZzLeS & CoDe GoLf',
  'DowNGoAT RiGHtGoAt LeFTGoat UpGoAT',
  'Foo BaR Baz',
)».&code;
0.52 uppercase
0.580645 uppercase
0.555556 lowercase

2
取り消し線コードブロック?新しい何か...それ
Bojidarマリノフ

1
max( "0.55 upp"、 "0.45 low")の3進数を交換して3文字を失います:試してみてください
フィルH

3

C#、135バイト

必要なもの:

using System.Linq;

実際の機能:

string U(string s){var c=s.Count(char.IsUpper)*1F/s.Count(char.IsLetter);return(c>0.5?c+" upp":1-c+" low")+"ercase";}

説明付き:

string U(string s)
{
    var c = s.Count(char.IsUpper) // count uppercase letters
               * 1F               // make it a float (less bytes than (float) cast)
               / s.Count(char.IsLetter); // divide it by the total count of letters
    return (c > 0.5 
        ? c + " upp"  // if ratio is greater than 0.5, the result is "<ratio> upp"
        : 1 - c + " low") // otherwise, "<ratio> low"
        + "ercase"; // add "ercase" to the output string
}

3

Python 2、114 110バイト

i=input()
n=1.*sum('@'<c<'['for c in i)/sum(c.isalpha()for c in i)
print max(n,1-n),'ulpopw'[n<.5::2]+'ercase'

1
あなたは置き換えることによって、2つのバイトを保存することができ['upp','low'][n<.5]'ulpopw'[n<.5::2]、そして交換することにより3以上[n,1-n][n<.5]max(n,1-n)
PurkkaKoodari



2

PHP、140 129文字

ゴルフの私の最初のラウンド-「標準的な」言語にとってそれほど悪くないですか?:-)

元の:

function f($s){$a=count_chars($s);for($i=65;$i<91;$i++){$u+=$a[$i];$l+=$a[$i+32];}return max($u,$l)/($u+$l).($u<$l?' low':' upp').'ercase';}

@manatworkにより129文字に短縮されました。

function f($s){$a=count_chars($s);for(;$i<26;$u+=$a[$i+++65])$l+=$a[$i+97];return max($u,$l)/($u+$l).' '.($u<$l?low:upp).ercase;}

コメント付き:

function uclcratio($s)
{
  // Get info about string, see http://php.net/manual/de/function.count-chars.php
  $array = count_chars($s);

  // Loop through A to Z
  for ($i = 65; $i < 91; $i++) // <91 rather than <=90 to save a byte
  {
    // Add up occurrences of uppercase letters (ASCII 65-90)
    $uppercount += $array[$i];
    // Same with lowercase (ASCII 97-122)
    $lowercount += $array[$i+32];
  }
  // Compose output
  // Ratio is max over sum
  return max($uppercount, $lowercount) / ($uppercount + $lowercount)
  // in favour of which, equality not possible per challenge definition
         . ($uppercount < $lowercount ? ' low' : ' upp') . 'ercase';
}

を考えると、$u+=…すでにerror_reportingデフォルトであるので、警告を黙らせると思います。次に、引用符を削除します' '.($u<$l?low:upp).ercase
マナトワーク

で繰り返すステートメントが1つだけのfor場合は、その中括弧を削除できます。for($i=65;$i<91;$u+=$a[$i++])$l+=$a[$i+32];
マナトワーク

別の警告の価格で、あなたはspare約することができます for代わりに65..91の0..26をループすることにより、制御変数の初期化を:for(;$i<26;$u+=$a[$i+++65])$l+=$a[$i+97];
manatwork

@manatworkに感謝します。PHPがどれほど寛容かは知りませんでした。:D 2番目は非常にスマートです。私は140-4-5-2 = 129 :-)へのカウントをもたらし、あなたのアイデアを実装
Christallkeks

2

ルビー、81 + 1 = 82

フラグを指定して-p

$_=["#{r=$_.count(a='a-z').fdiv$_.count(a+'A-Z')} low","#{1-r} upp"].max+'ercase'

幸運なことに、0から1までの数値の場合、辞書式ソートは数値ソートと同じです。



1

Gema、125文字

\A=@set{l;0}@set{u;0}
<J1>=@incr{l}
<K1>=@incr{u}
?=
\Z=0.@div{@cmpn{$l;$u;$u;;$l}00;@add{$l;$u}} @cmpn{$l;$u;upp;;low}ercase

サンプル実行:

bash-4.3$ for input in 'PrOgRaMiNgPuZzLeS & CoDe GoLf' 'DowNGoAT RiGHtGoAt LeFTGoat UpGoAT' 'Foo BaR Baz'; do
>     gema '\A=@set{l;0}@set{u;0};<J1>=@incr{l};<K1>=@incr{u};?=;\Z=0.@div{@cmpn{$l;$u;$u;;$l}00;@add{$l;$u}} @cmpn{$l;$u;upp;;low}ercase' <<< "$input"
>     echo " <- $input"
> done
0.52 uppercase <- PrOgRaMiNgPuZzLeS & CoDe GoLf
0.58 uppercase <- DowNGoAT RiGHtGoAt LeFTGoat UpGoAT
0.55 lowercase <- Foo BaR Baz

-1エソランは友達を怖がらせるからです。(jk、upvoted)
ev3commander

1

真剣に、58バイト

" upp"" low"k"ercase"@+╗,;;ú;û+∩@-@-;l@ú@-l/;1-k;i<@╜@ZEεj

六角ダンプ:

22207570702222206c6f77226b2265726361736522402bbb2c3b3ba33b
962bef402d402d3b6c40a3402d6c2f3b312d6b3b693c40bd405a45ee6a

ダウンロード可能なインタープリターでのみ機能します...オンラインのインタープリターはまだ壊れています。

説明:

" upp"" low"k"ercase"@+╗                                    Put [" lowercase"," uppercase"]
                                                            in reg0
                        ,;;ú;û+∩@-@-                        Read input, remove non-alpha
                                    ;l@                     Put its length below it
                                       ú@-                  Delete lowercase
                                          l                 Get its length
                                           /                Get the ratio of upper/total
                                            ;1-k            Make list [upp-ratio,low-ratio]
                                                ;i<         Push 1 if low-ratio is higher
                                                   @        Move list to top
                                                    ╜@Z     Zip it with list from reg0
                                                       E    Pick the one with higher ratio
                                                        εj  Convert list to string.

1

Pyth、45バイト

AeSK.e,s/LzbkrBG1s[cGshMKd?H"upp""low""ercase

オンラインでお試しください。 テストスイート。

説明

             rBG1               pair of alphabet, uppercase alphabet
    .e                          map k, b over enumerate of that:
      ,                           pair of
           b                          lowercase or uppercase alphabet
        /Lz                           counts of these characters in input
       s                              sum of that
                                    and
            k                         0 for lowercase, 1 for uppercase
   K                            save result in K
 eS                             sort the pairs & take the larger one
A                               save the number of letters in and the 0 or 1 in H

s[                              print the following on one line:
  cG                              larger number of letters divided by
    shMK                            sum of first items of all items of K
                                    (= the total number of letters)
        d                         space
         ?H"upp""low"             "upp" if H is 1 (for uppercase), otherwise "low"
                     "ercase      "ercase"

1

CoffeeScript、104文字

 (a)->(r=1.0*a.replace(/\W|[A-Z]/g,'').length/a.length)&&"#{(r>.5&&(r+' low')||(1-r+' upp'))+'ercase'}"

coffeescriptは当初、意図した戻り値を引数として「r」値に渡そうとしましたが、rは関数ではなく数値であったため失敗し、非常に迷惑でした。&&ステートメントを分離するためにステートメントの間に配置することで回避しました。


1

Pyth、 54 53

@Maltysenのおかげで1バイト節約

K0VzI}NG=hZ)I}NrG1=hK;ceS,ZK+ZK+?>ZK"low""upp""ercase

オンラインで試す

K0                  " Set K to 0
                    " (Implicit: Set Z to 0)

Vz                  " For all characters (V) in input (z):
  I}NG              " If the character (N) is in (}) the lowercase alphabet (G):
    =hZ             " Increment (=h) Z
  )                 " End statement
  I}NrG1            " If the character is in the uppercase alphabet (rG1):
    =hK             " Increment K
;                   " End all unclosed statements/loops

c                   " (Implicit print) The division of
  e                 " the last element of
    S,ZK           " the sorted (S) list of Z and K (this returns the max value)
+ZK                 " by the sum of Z and K

+                   " (Implicit print) The concatenation of
  ?>ZK"low""upp"    " "low" if Z > K, else "upp"
  "ercase"          " and the string "ercase".

,<any><any>同じである2つのアリティコマンドである[<any><any>)あなたにバイトを保存することができた
Maltysen

1

ルビー、97文字

->s{'%f %sercase'%[(l,u=[/[a-z]/,/[A-Z]/].map{|r|s.scan(r).size}).max.fdiv(l+u),l>u ?:low: :upp]}

サンプル実行:

2.1.5 :001 > ['PrOgRaMiNgPuZzLeS & CoDe GoLf', 'DowNGoAT RiGHtGoAt LeFTGoat UpGoAT', 'Foo BaR Baz'].map{|s|->s{'%f %sercase'%[(l,u=[/[a-z]/,/[A-Z]/].map{|r|s.scan(r).size}).max.fdiv(l+u),l>u ?:low: :upp]}[s]}
 => ["0.520000 uppercase", "0.580645 uppercase", "0.555556 lowercase"] 

1

05AB1E、28バイト

ʒ.u}gság/Dò©_αð„Œ„›…#'ƒß«®èJ

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


ʒ.u}g                        # filter all but uppercase letters, get length.
     ság/                    # Differential between uppercase and input length.
         Dò©                 # Round up store result in register w/o pop.
            _α               # Negated, absolute difference.
              ð              # Push space.
               „Œ„›…         # Push "upper lower"
                    #        # Split on space.
                     'ƒß«    # Concat "case" resulting in [uppercase,lowercase]
                         ®èJ # Bring it all together.

1

Java 8、136 130バイト

s->{float l=s.replaceAll("[^a-z]","").length();l/=l+s.replaceAll("[^A-Z]","").length();return(l<.5?1-l+" upp":l+" low")+"ercase";}

@ProgramFOX 'C#.NET answerのポートを作成する-6バイト。

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

説明:

s->{                  // Method with String as both parameter and return-type
  float l=s.replaceAll("[^a-z]","").length();
                      //  Amount of lowercase
  l/=l+s.replaceAll("[^A-Z]","").length();
                      //  Lowercase compared to total amount of letters
  return(l<.5?        //  If this is below 0.5:
          1-l+" upp"  //   Return `1-l`, and append " upp"
         :            //  Else:
          l+" low")   //   Return `l`, and append " low"
        +"ercase";}   //  And append "ercase"



1

コトリン、138バイト

コード

let{var u=0.0
var l=0.0
forEach{when{it.isUpperCase()->u++
it.isLowerCase()->l++}}
"${maxOf(u,l)/(u+l)} ${if(u>l)"upp" else "low"}ercase"}

使用法

fun String.y():String =let{var u=0.0
var l=0.0
forEach{when{it.isUpperCase()->u++
it.isLowerCase()->l++}}
"${maxOf(u,l)/(u+l)} ${if(u>l)"upp" else "low"}ercase"}

fun main(args: Array<String>) {
    println("PrOgRaMiNgPuZzLeS & CoDe GoLf".y())
    println("DowNGoAT RiGHtGoAt LeFTGoat UpGoAT".y())
    println("Foo BaR Baz".y())
}

1

Pyth、40 39バイト

Jml@dQrBG1+jdeS.T,cRsJJc2."kw񽙽""ercase

ここで試してみてください

説明

Jml@dQrBG1+jdeS.T,cRsJJc2."kw񽙽""ercase
 m    rBG1                                For the lower and uppercase alphabet...
  l@dQ                                    ... count the occurrences in the input.
J                 cRsJJ                   Convert to frequencies.
               .T,     c2."kw񽙽"          Pair each with the appropriate case.
             eS                           Get the more frequent.
          +jd                    "ercase  Stick it all together.

1

PowerShell Core134 128バイト

Filter F{$p=($_-creplace"[^A-Z]",'').Length/($_-replace"[^a-z]",'').Length;$l=1-$p;(.({"$p upp"},{"$l low"})[$p-lt$l])+"ercase"}

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

Veskah、関数をフィルターに変換して6バイトを節約してくれてありがとう!


1
関数ではなくフィルターにすることで、2バイトの空きバイトを保存できます。つまり、フィルターF(コード)
ベスカ

I never knew this was a thing! Thanks, Veskah!
Jeff Freeman

1

Tcl, 166 bytes

proc C s {lmap c [split $s ""] {if [string is u $c] {incr u}
if [string is lo $c] {incr l}}
puts [expr $u>$l?"[expr $u./($u+$l)] upp":"[expr $l./($u+$l)] low"]ercase}

Try it online!


1

APL(NARS), 58 char, 116 bytes

{m←+/⍵∊⎕A⋄n←+/⍵∊⎕a⋄∊((n⌈m)÷m+n),{m>n:'upp'⋄'low'}'ercase'}

test:

  h←{m←+/⍵∊⎕A⋄n←+/⍵∊⎕a⋄∊((n⌈m)÷m+n),{m>n:'upp'⋄'low'}'ercase'}
  h "PrOgRaMiNgPuZzLeS & CoDe GoLf"
0.52 uppercase
  h "DowNGoAT RiGHtGoAt LeFTGoat UpGoAT"
0.5806451613 uppercase
  h "Foo BaR Baz"
0.5555555556 lowercase

1

C, 120 bytes

f(char*a){int m=0,k=0,c;for(;isalpha(c=*a++)?c&32?++k:++m:c;);printf("%f %sercase",(m>k?m:k)/(m+k+.0),m>k?"upp":"low");}

test and result:

main()
{char *p="PrOgRaMiNgPuZzLeS & CoDe GoLf", *q="DowNGoAT RiGHtGoAt LeFTGoat UpGoAT", *m="Foo BaR Baz";
 f(p);printf("\n");f(q);printf("\n");f(m);printf("\n");
}

results

0.520000 uppercase
0.580645 uppercase
0.555556 lowercase

It suppose Ascii character set.



@ceilingcat you can update your to that 116 bytes... This 120 bytes for me if is enough...
RosLuP
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.