อัตราส่วนของตัวอักษรตัวพิมพ์ใหญ่ต่อตัวพิมพ์เล็ก


28

ในการท้าทายนี้คุณและเพื่อนของคุณกำลังถกเถียงกันว่าคดีไหนดีกว่าตัวพิมพ์ใหญ่หรือตัวพิมพ์เล็ก? หากต้องการค้นหาคุณเขียนโปรแกรมเพื่อทำสิ่งนี้ให้คุณ

เนื่องจาก esolangs ทำให้ตกใจเพื่อนของคุณและรหัส verbose ทำให้คุณกลัวรหัสของคุณจะต้องสั้นที่สุด


ตัวอย่าง

PrOgRaMiNgPuZzLeS & CoDe GoLf
0.52 uppercase

DowNGoAT RiGHtGoAt LeFTGoat UpGoAT
0.58 uppercase

Foo BaR Baz
0.56 lowercase

ข้อมูลจำเพาะ

ข้อมูลที่ป้อนจะประกอบด้วยอักขระ ASCII เท่านั้น ควรละเว้นอักขระที่ไม่ใช่ตัวอักษรทั้งหมด แต่ละกรณีจะมีอย่างน้อย 1 ตัว

เอาต์พุตควรเป็นปริมาณของเคสที่ปรากฏบ่อยที่สุดเกินจำนวนอักขระทั้งหมด มันควรจะเป็นทศนิยมที่ถูกต้องถึงทศนิยมอย่างน้อย 2 ตำแหน่ง ถ้าพิมพ์ใหญ่ปรากฏขึ้นบ่อยขึ้นการส่งออกควรจะจบลงด้วยหรือuppercaselowercase

จะไม่มีตัวอักษรตัวพิมพ์ใหญ่และตัวพิมพ์เล็กเท่ากัน


7
Esolang ไม่กลัวเพื่อนของฉัน นั่นหมายความว่ารหัสของฉันสามารถ verbose อย่างดุเดือด?
Alex A.

@AlexA รหัส verbose ทำให้คุณกลัวดังนั้นรหัสของคุณจะต้องถูก golfed
Downgoat

16
ใช่แล้วฉันลืมเรื่องฝันร้ายชวาที่เกิดขึ้นอีกครั้ง
Alex A.

4
จะมีการป้อนข้อมูลด้วยเคสเดียวหรือไม่?
ผลิตด้วยตนเอง

1
"ความถูกต้องไปยังตำแหน่งทศนิยมอย่างน้อย 2 ตำแหน่ง" จำเป็นต้องพิมพ์ทศนิยมอย่างน้อยสองตำแหน่งหรือสามารถนำทศนิยมสองออกจากศูนย์ได้หรือไม่
hvd

คำตอบ:


2

Pyth - 40 ไบต์

นี่เป็นครั้งแรกที่ฉันใช้การจัดรูปแบบสตริงแบบเวกเตอร์ซึ่งค่อนข้างเท่ห์

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

Test Suite


7

JavaScript (ES6) 87 ไบต์

แก้ไข 1 ไบต์ที่บันทึกไว้ขอบคุณ ETHProductions
แก้ไขเพิ่มเติมอีก 1 ไบต์ที่บันทึกไว้ขอบคุณ 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'

น้อย golfed

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
)

&&` ${t-l>l?1-l/t+'upp':l/t+'low'}ercase` ผมเชื่อว่าคุณสามารถบันทึกหนึ่งไบต์โดยใช้
ETHproductions

นอกจากนี้c=>l+=++t&&c>'Z'ฉันจะทำงานฉันคิดว่า ...
ETHproductions

@ETHproductions คำใบ้แรกของคุณดูไม่เป็นประโยชน์อย่างที่สองคือฉลาดขอบคุณ
edc65

1
เราสามารถดูคำอธิบายที่ไม่ได้แปลได้ไหม?
Cyoce

@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 ปล้นอักขระพิเศษก่อนหน้าÖนี้ดังนั้นโปรดคลิกลิงก์เพื่อรับรหัสที่ถูกต้อง)


เยี่ยมมาก! regex แรกของคุณ (รวมถึงสัญญาณดอลล่า) สามารถถูกแทนที่ด้วยและที่สองด้วย"[a-z]" จะมีค่าเท่ากับ คุณยังสามารถลบเครื่องหมายคำพูดสุดท้ายได้ "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
ETHproductions

@Eth \x80ดูเหมือนจะไม่ทำอะไรเลยและÖÐสร้าง "case" ... บางทีมี Invisi-chars ที่ตัดทอนบ้าง? Btw ให้ mod ของฉันเองขอบคุณสำหรับเคล็ดลับ
nicael

@ETH ตกลงการจัดการเพื่อการใช้งานที่ Invisi ถ่าน :)
nicael

น่าเสียดายที่แบ็กสแลชจะต้องถูกเพิ่มเป็นสองเท่าภายในสตริงเพื่อให้ตัวแยกวิเคราะห์ regex ทำงานได้ ในกรณีนี้"\w"ก็ตรงกับทุกws และตรงกับทุก"\\w" ดังนั้นผมจึงคิดว่าคุณจะต้องให้A-Za-z0-9_ "[a-z]"
ETHproductions

4

R , 133 123 118 108 106 105 104 ไบต์

ลดขนาดลง 10 ไบต์ด้วย @ ovs, 8 ขอบคุณ @Giuseppe และอีก 10 ขอบคุณ @ngm ณ จุดนี้มันเป็นความพยายามร่วมกันจริง ๆ ที่ฉันให้ไบต์และอื่น ๆ เอาออก)

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

Julia, 76 74 ไบต์

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

นี่คือฟังก์ชั่นแลมบ์ดาที่ยอมรับสตริงและส่งคืนสตริง หากต้องการเรียกใช้กำหนดค่าให้กับตัวแปร

Ungolfed:

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

บันทึก 2 ไบต์ด้วย edc65!


1
คุณสามารถประหยัดได้ 2 ไบต์โดยใช้ercaseแทนcase
edc65

@ edc65 ขอบคุณมาก!
Alex 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 Marinov

1
ลด 3 chars โดยเปลี่ยน ternary เป็น max ("0.55 upp", "0.45 low"): ลองดู
Phil 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';}

ย่อเหลือ 129 ตัวอักษรด้วย @manatwork:

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.
ผลิตด้วยตนเอง

หากคุณมีคำสั่งเดียวที่จะทำซ้ำโดยforคุณสามารถลบวงเล็บปีกการอบ ๆ for($i=65;$i<91;$u+=$a[$i++])$l+=$a[$i+32];
ผลิตด้วยตนเอง

ด้วยราคาของการเตือนอื่นคุณสามารถสำรองforการเริ่มต้นของตัวแปรควบคุมได้โดยวนลูป 0..26 แทน 65..91:for(;$i<26;$u+=$a[$i+++65])$l+=$a[$i+97];
manatwork

ว้าวขอบคุณ @manatwork ฉันไม่รู้ว่า PHP นั้นทนได้ยังไง! : D อันที่สองฉลาดมาก ฉันใช้ความคิดของคุณแล้วนำจำนวนไปที่ 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 การเรียงลำดับพจนานุกรมจะเหมือนกับการเรียงลำดับตัวเลข


2

เสียงกระเพื่อมสามัญ 132 ไบต์

(setq s(read-line)f(/(count-if'upper-case-p s)(count-if'alpha-char-p s)))(format t"~f ~aercase"(max f(- 1 f))(if(> f .5)"upp""low"))

ลองออนไลน์!


ในการทดสอบ 0.52 เป็นตัวพิมพ์ใหญ่ไม่ใช่ตัวพิมพ์เล็ก ...
RosLuP

1
@RosLuP แก้ไขขอบคุณมาก!
Renzo

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 เพราะ esolangs ทำให้ตกใจเพื่อนของคุณ (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

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>เป็นคำสั่งสองคำที่เหมือนกัน[<any><any>)ซึ่งสามารถช่วยคุณประหยัด byte
Maltysen

1

Ruby, 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";}

-6 ไบต์สร้างพอร์ตของ@ProgramFOX 'คำตอบ C # .NET

ลองออนไลน์

คำอธิบาย:

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

Kotlin , 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 Core , 134 128 ไบต์

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

ลองออนไลน์!

ขอบคุณVeskahสำหรับการบันทึกหกไบต์โดยแปลงฟังก์ชันเป็นตัวกรอง!


1
คุณสามารถบันทึกไบต์ที่สองฟรีโดยการทำให้มันเป็นตัวกรองแทนของฟังก์ชั่นคือตัวกรอง F (รหัส)
Veskah

ฉันไม่เคยรู้เลยว่านี่เป็นเรื่อง! ขอบคุณ Veskah!
Jeff Freeman


1

APL (NARS), 58 ถ่าน, 116 ไบต์

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

ทดสอบ:

  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 ไบต์

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");}

การทดสอบและผล:

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");
}

ผล

0.520000 uppercase
0.580645 uppercase
0.555556 lowercase

มันสมมติว่าชุดอักขระ Ascii



@ceilingcat คุณสามารถอัปเดตของคุณเป็น 116 ไบต์ ... 120 ไบต์นี้สำหรับฉันถ้าพอ ...
RosLuP
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.