Rapporto tra lettere maiuscole e minuscole


28

In questa sfida, tu e i tuoi amici state discutendo su quale caso sia migliore, maiuscolo o minuscolo? Per scoprirlo, scrivi un programma per farlo per te.

Poiché esolangs spaventa i tuoi amici e il codice dettagliato ti spaventa, il tuo codice dovrà essere il più breve possibile.


Esempi

PrOgRaMiNgPuZzLeS & CoDe GoLf
0.52 uppercase

DowNGoAT RiGHtGoAt LeFTGoat UpGoAT
0.58 uppercase

Foo BaR Baz
0.56 lowercase

specificazioni

L'input consisterà solo di caratteri ASCII. Tutti i caratteri non alfabetici devono essere ignorati. Ci sarà almeno 1 carattere per ogni caso

L'output dovrebbe essere la quantità del caso che appare più spesso rispetto alla quantità totale di caratteri alfabetici. Dovrebbe essere un decimale accurato di almeno 2 decimali. Se il carattere maiuscolo appare più spesso, l'output dovrebbe terminare con uppercase, o lowercase.

Non ci sarà mai la stessa quantità di caratteri maiuscoli e minuscoli.


7
Gli Esolang non spaventano i miei amici. Ciò significa che il mio codice può essere selvaggiamente dettagliato?
Alex A.

@AlexA. il codice dettagliato ti spaventa, quindi anche il tuo codice dovrà essere golfato.
Downgoat,

16
Oh giusto, mi ero dimenticato dei miei incubi ricorrenti di Java.
Alex A.

4
Ci saranno input con un solo caso?
arte

1
"Preciso con almeno 2 decimali" richiede la stampa di almeno due decimali o può essere lasciato fuori un secondo decimale di zero?
hvd,

Risposte:


2

Pyth - 40 byte

Questa è la prima volta che uso mai la formattazione di stringhe vettorializzata che è piuttosto interessante.

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

Test Suite .


7

JavaScript (ES6) 87 byte

Modifica 1 byte salvato thx ETHProductions
Modifica 1 altro byte salvato thx l4me

Una funzione anonima. Lungo, ma non ho trovato più il modo di giocare a golf

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

Meno golf

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
)

Credo che potresti salvare un byte usando &&` ${t-l>l?1-l/t+'upp':l/t+'low'}ercase` .
ETHproductions

Inoltre, c=>l+=++t&&c>'Z'funzionerebbe, credo ...?
ETHproductions

@ETHproductions il tuo primo suggerimento non sembra utile, il secondo è intelligente, grazie
edc65

1
Possiamo vedere la versione non golfata con una spiegazione?
Cyoce,

Aggiunta la spiegazione di @Cyoce - in effetti è semplice
edc65 il

4

CJam, 47 45 byte

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

Provalo online.

Non giocare a golf troppo a lungo ...

Spiegazione

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 byte

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

(Nota: SE ha rimosso un carattere speciale prima Ö, quindi fai clic sul link per ottenere il codice corretto)


Bel lavoro! Il tuo primo regex (compresi i segni del dollaro) può essere sostituito con "[a-z]", e il secondo con "A-Za-z". 0.5è uguale a ½. È inoltre possibile rimuovere le virgolette finali.
Produzioni ETH il

Con le modifiche menzionate e la compressione delle stringhe, ottengo 58: A=Uf"[a-z]" l /Uf"[A-Za-z]" l)>½?A+" low":1-A+" upp" +`\x80ÖÐè possibile ottenere la versione non elaborata degli ultimi tre byte con Oc"ercase.
ETHproductions

@Eth \x80non sembra aver fatto nulla e ha ÖÐprodotto "case" ... Forse alcuni caratteri invisibili che sono stati troncati? A proposito, mi ha fornito la mia mod, grazie per i suggerimenti
nicael,

@ETH Ok, sono riuscito a usare quell'invisi-char :)
nicael,

Sfortunatamente, le barre rovesciate devono essere raddoppiate all'interno delle stringhe affinché il parser regex funzioni. In questo caso, "\w"corrisponde semplicemente a tutti wi messaggi e "\\w"corrisponde a tutti A-Za-z0-9_. Quindi penso che dovrai continuare "[a-z]".
ETHproductions

4

R , 133 123 118 108 106 105 104 byte

Abbassato di 10 byte grazie a @ ovs, 8 grazie a @Giuseppe e 10 ancora grazie a @ngm. A questo punto è davvero uno sforzo collaborativo in cui fornisco i byte e gli altri li tolgono;)

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

Provalo online!


rasato un altro byte.
JayCe,

3

MATL , 49 50 byte

Utilizza la versione corrente (4.1.1) della lingua, che è precedente alla sfida.

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

Esempi

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

Spiegazione

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 byte

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

Questa è una funzione lambda che accetta una stringa e restituisce una stringa. Per chiamarlo, assegnarlo a una variabile.

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

Salvato 2 byte grazie a edc65!


1
U può sicuramente salvare 2 byte usando ercaseinvece dicase
edc65 il

@ edc65 Ottima idea, grazie!
Alex A.

3

Perl 6 ,  91 70 69 63   61 byte

{($/=($/=@=.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

Uso:

# 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
Blocchi di codice barrati? È qualcosa di nuovo ...
Bojidar Marinov,

1
Perdere 3 caratteri scambiando ternary con max ("0,55 upp", "0,45 low"): Provalo
Phil H

3

C #, 135 byte

Richiede:

using System.Linq;

Funzione reale:

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

Con spiegazione:

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 byte

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
È possibile salvare 2 byte sostituendo ['upp','low'][n<.5]con 'ulpopw'[n<.5::2]e altri 3 sostituendo [n,1-n][n<.5]con max(n,1-n).
PurkkaKoodari,



2

PHP, 140 129 caratteri

Il mio primo round di golf - non male per una lingua "standard", eh? :-)

Originale:

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

Ridotto a 129 caratteri grazie a @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;}

Con commenti:

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

Dato che $u+=…, suppongo che tu abbia già error_reportingin default, quindi silenzia gli avvisi. Quindi rimuovere alcune citazioni: ' '.($u<$l?low:upp).ercase.
arte

Se avessi una sola istruzione da ripetere con il for, potresti rimuovere le parentesi graffe attorno ad essa. for($i=65;$i<91;$u+=$a[$i++])$l+=$a[$i+32];
arte

Con il prezzo di un altro avviso, è possibile risparmiare l' forinizializzazione della variabile di controllo eseguendo il loop 0..26 anziché 65..91:for(;$i<26;$u+=$a[$i+++65])$l+=$a[$i+97];
manatwork,

Wow, grazie @manatwork, non sapevo quanto tollerante fosse PHP! : D Il secondo è molto intelligente. Ho implementato le tue idee, portando il conteggio a 140-4-5-2 = 129 :-)
Christallkeks,

2

Rubino, 81 + 1 = 82

Con bandiera -p,

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

È fortunato che per i numeri compresi tra 0 e 1, l'ordinamento lessicografico sia uguale all'ordinamento numerico.


2

Lisp comune, 132 byte

(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"))

Provalo online!


Nel test 0,52 è maiuscolo non minuscolo ...
RosLuP

1
@RosLuP, corretto, grazie mille!
Renzo,

1

Gema, 125 personaggi

\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

Esecuzione di esempio:

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 perché gli esolang spaventano i tuoi amici. (jk, votato)
ev3commander il

1

Scherzi a parte, 58 byte

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

Dump esadecimale:

22207570702222206c6f77226b2265726361736522402bbb2c3b3ba33b
962bef402d402d3b6c40a3402d6c2f3b312d6b3b693c40bd405a45ee6a

Funziona solo sull'interprete scaricabile ... quello online è ancora rotto.

Spiegazione:

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

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

Provalo online. Suite di test.

Spiegazione

             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 caratteri

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

Inizialmente, coffeescript stava provando a passare il valore di ritorno previsto come argomento al valore "r", che ha avuto esito negativo ed è stato estremamente fastidioso perché r era un numero, non una funzione. L'ho aggirato inserendo una &&tra le dichiarazioni per separarle.


1

Pyth, 54 53

Un byte salvato grazie a @Maltysen

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

Provalo online

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>è un comando di due arity che è lo stesso [<any><any>)che può farti risparmiare un byte
Maltysen,

1

Rubino, 97 caratteri

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

Esecuzione di esempio:

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 byte

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

Provalo online!


ʒ.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 byte

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 byte creando una porta della risposta C # .NET di @ProgramFOX .

Provalo online.

Spiegazione:

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

REXX, 144 byte

a=arg(1)
l=n(upper(a))
u=n(lower(a))
c.0='upp';c.1='low'
d=u<l
say 1/((u+l)/max(u,l)) c.d'ercase'
n:return length(space(translate(a,,arg(1)),0))



1

Kotlin , 138 byte

Codice

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

uso

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 byte

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

Provalo qui

Spiegazione

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 byte

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

Provalo online!

Grazie, Veskah , per aver salvato sei byte convertendo la funzione in un filtro!


1
È possibile salvare due byte liberi rendendolo un filtro anziché una funzione, ovvero filtro F (codice)
Veskah

Non ho mai saputo che fosse una cosa! Grazie Veskah!
Jeff Freeman,

1

Tcl , 166 byte

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}

Provalo online!


1

APL (NARS), 58 caratteri, 116 byte

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

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 e risultato:

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

risultati

0.520000 uppercase
0.580645 uppercase
0.555556 lowercase

Supponiamo che il set di caratteri Ascii.



@ceilingcat puoi aggiornare i tuoi a quei 116 byte ... Questi 120 byte per me se è abbastanza ...
RosLuP
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.