Faça-me um s'more!

19

Faça-me um s'more ! Digo a você a largura, a quantidade de biscoito, a quantidade de chocolate e a quantidade de marshmallow. Um exemplo:

Entrada:

Largura: 10 Graham: 3 Chocolate: 2 Marshmallow: 1.

Resultado:

GGGGGGGGGG
GGGGGGGGGG
GGGGGGGGGG
CCCCCCCCCC
CCCCCCCCCC
MMMMMMMMMM
GGGGGGGGGG
GGGGGGGGGG
GGGGGGGGGG

Isso é fácil? Hum ... sim.

Observe que a entrada deve ser uma lista de argumentos para uma função ou programa, não uma string. Você pode escolher o primeiro sendo Width e depois Graham, mas qualquer pedido é bom.

Casos de teste completos, se você estiver interessado.

Snippet de pilha (para teste etc.)

Isso é para testar a saída.

var smore = function(width, graham, chocolate, marshmallow){
	return ("G".repeat(width) + "\n").repeat(graham) + 
	("C".repeat(width) + "\n").repeat(chocolate) + 
	("M".repeat(width) + "\n").repeat(marshmallow) + 
	("G".repeat(width) + "\n").repeat(graham);
};
Snippetify(smore);
<script src="https://programmer5000.com/snippetify.min.js"></script>
Width: <input type = "number">
Graham: <input type = "number">
Chocolate: <input type = "number">
Marshmallow: <input type = "number">
<button>Try it out!</button>
<pre data-output></pre>

Notas:

  • Você pode incluir uma nova linha à direita no final da última linha. Você também pode usar um em \vez de uma nova linha.
  • Isso é .
  • Alguma pergunta? Comente abaixo:
programmer5000
fonte
21
Editei o link Deixe-me pesquisar no Google para você. Realmente não foi engraçado.
Nível do rio St
11
@FelipeNardiBatista yes.
programmer5000
11
Algumas respostas estão assumindo ordem e formato de entrada flexíveis (como de costume no PPCG), mas o desafio parece exigir uma ordem específica e descartar seqüências de caracteres (não tenho certeza do que isso significa). Você pode esclarecer?
18746 Luis Mendo
2
Agradeço por ter esclarecido. Você deve, então, reformular a sentença a entrada deve ser uma lista de argumentos para uma função ou um programa, não uma corda, com o primeiro ser Largura, em seguida, Graham, etc . Pessoalmente, eu diria algo como "O formato de entrada é flexível, como de costume"
Luis Mendo
4
@ programmer5000 mas por quê? Se eles votaram negativamente, é 90% provável que seja porque acham que é um desafio chato e trivial. Além disso, é muito rude dizer às pessoas para explicar ou retrair. Eles têm o direito de votar sem comentários.
Rɪᴋᴇʀ

Respostas:

2

Gelatina , 11 bytes

ṁ4“GCMG”x×Y

Experimente online!

Como funciona

ṁ4“GCMG”x×Y  Main link. Left argument: g, c, m. Right argument: w

ṁ4           Mold 4; repeat g, c, m until length 4 is reached. Yields [g, c, m, g].
  “GCMG”x    Repeat 'G' g times, then 'C' c times, then 'M' m times, and finally
             'G' g times. This yields a string.
         ×   Multiply each character w times. This is essentially a bug, but
             Jelly's × behaves like Python's * (and vectorizes), so it can be
             abused for character repetition.
          Y  Join, separating by linefeeds.
Dennis
fonte
13

Python 2 , 73 48 bytes

lambda w,g,c,m:zip(*['G'*g+'C'*c+'M'*m+'G'*g]*w)

Experimente online!

Cria uma versão transposta da resposta, que a transpõe para o formato correto com zip(*l)

Felipe Nardi Batista
fonte
8

05AB1E , 21 19 19 bytes

"GCMG"S×|D«‚øvy`.D»

Experimente online!

-2 graças à minha supervisão e Emigna.

"GCMG"S×            # Push GCMG, separate, duplicate n times.
        |D«         # Push rest of inputs, doubled.
           ‚ø       # Wrap GCMG array and input array, then zip them into pairs.
             vy`.D» # For each pair, print n of G/C/M/G.

(Veja a resposta de Emigna, é melhor: /codegolf//a/116787/59376 )

Urna de polvo mágico
fonte
11
Você parece ter deixado um acidentalmente ©lá.
Emigna
11
Você também pode substituir ¬¸com Dos elementos extras perdidos ao compactar.
Emigna
@ Emigna Gosto e odeio essa funcionalidade.
Urna mágica de polvo
Sim, muitas vezes é muito chato, mas de vez em quando (como agora), torna-se :) útil
Emigna
8

JavaScript (ES6), 71 bytes

(W,G,C,M)=>[...'GCMG'].map(X=>`${X.repeat(W)}
`.repeat(eval(X))).join``

Woohoo, bata mais 3 respostas em JavaScript!

darrylyeo
fonte
Bom, muito bom - recebe meu voto.
Shaggy
7

MATL , 17 bytes

'GCMG'iK:)Y"!liX"

O formato de entrada é: primeira entrada [G, C, M], segunda entrada W.

Experimente online!

Explicação com exemplo

Considere entradas [3 2 1] e 10.

'GCMG' % Push this string
       % STACK: 'GCMG'
i      % Take first input: array of three numbers
       % STACK: 'GCMG', [3 2 1]
K:     % Push [1 2 3 4]
       % STACK: 'GCMG', [3 2 1], [1 2 3 4]
)      % Index (modular, 1-based). This repeats the first entry of the input array
       % STACK: 'GCMG', [3 2 1 3]
Y"     % Run-length decoding
       % STACK: 'GGGCCMGGG'
!      % Transpose. Gives a column vector of chars
       % STACK: ['G'; 'G'; 'G'; 'C'; 'C'; 'M'; 'G'; 'G'; 'G']
l      % Push 1
       % STACK: ['G'; 'G'; 'G'; 'C'; 'C'; 'M'; 'G'; 'G'; 'G'], 1
i      % Take second input: number
       % STACK: ['G'; 'G'; 'G'; 'C'; 'C'; 'M'; 'G'; 'G'; 'G'], 1, 10
X"     % Repeat the specified numbers of times along first and second dimensions
       % STACK: ['GGGGGGGGGG';'GGGGGGGGGG';'GGGGGGGGGG';'CCCCCCCCCC';...;'GGGGGGGGGG']
       % Implicitly display
Luis Mendo
fonte
7

C # , 204 bytes


Golfe

(w,g,c,m)=>{string G="\n".PadLeft(++w,'G'),C="\n".PadLeft(w,'C'),M="\n".PadLeft(w,'M'),o="".PadLeft(g,'G');o+="".PadLeft(m,'M')+"".PadLeft(c,'C')+o;return o.Replace("G",G).Replace("C",C).Replace("M",M);};

Ungolfed

( w, g, c, m ) => {
   string
      G = "\n".PadLeft( ++w, 'G' ),
      C = "\n".PadLeft( w, 'C' ),
      M = "\n".PadLeft( w, 'M' ),
      o = "".PadLeft( g, 'G' );

   o +=
      "".PadLeft( m, 'M' ) +
      "".PadLeft( c, 'C' ) +
      o;

   return o
      .Replace( "G", G )
      .Replace( "C", C )
      .Replace( "M", M );
};

Ungolfed legible

// Function with 4 parameters
//   w : Width
//   g : Graham
//   c : Chocolate
//   m : Marshmallow
( w, g, c, m ) => {

   // Initialization of vars with the contents
   //    of each line, with a new line at the end
   string
      G = "\n".PadLeft( ++w, 'G' ),
      C = "\n".PadLeft( w, 'C' ),
      M = "\n".PadLeft( w, 'M' ),

      // Trick to reduce the byte count
      //   Initialize the output with n 'G's
      o = "".PadLeft( g, 'G' );

   // Add again n 'M's and n 'C's
   //   Append the 'G's at the end.
   o +=
      "".PadLeft( m, 'M' ) +
      "".PadLeft( c, 'C' ) +
      o;

   // Replce every instance of 'G'/'C'/'M'
   //    with the full line
   return o
      .Replace( "G", G )
      .Replace( "C", C )
      .Replace( "M", M );
};

Código completo

using System;
using System.Collections.Generic;

namespace Namespace {
   class Program {
      static void Main( String[] args ) {
         Func<Int32, Int32, Int32, Int32, String> f = ( w, g, c, m ) => {
            string
               G = "\n".PadLeft( ++w, 'G' ),
               C = "\n".PadLeft( w, 'C' ),
               M = "\n".PadLeft( w, 'M' ),
               o = "".PadLeft( g, 'G' );

            o +=
               "".PadLeft( m, 'M' ) +
               "".PadLeft( c, 'C' ) +
               o;

            return o
               .Replace( "G", G )
               .Replace( "C", C )
               .Replace( "M", M );
         };

         List<Tuple<Int32, Int32, Int32, Int32>>
            testCases = new List<Tuple<Int32, Int32, Int32, Int32>>() {
               new Tuple<Int32, Int32, Int32, Int32>( 1, 1, 1, 1 ),
               new Tuple<Int32, Int32, Int32, Int32>( 1, 1, 1, 2 ),
               new Tuple<Int32, Int32, Int32, Int32>( 1, 1, 2, 1 ),
               //
               // ...
               //
               // The link above contains the code ready to run
               //    and with every test from the pastebin link
               //
               // Yes, it contains 342 tests ready to run.
               //
               // I can barely fit every test on a 1080p screen...
               //    ... and there's 6 tests per line... Jebus...
               //
            };

         foreach( var testCase in testCases ) {
            Console.WriteLine( $"Input:\nWidth: {testCase.Item1,3} Graham: {testCase.Item2,3} Chocolate: {testCase.Item3,3} Marshmellow: {testCase.Item4,3}\nOutput:\n{f( testCase.Item1, testCase.Item2, testCase.Item3, testCase.Item4 )}\n" );
         }

         Console.ReadLine();
      }
   }
}

Lançamentos

  • v1.0 - 204 bytes- Solução inicial.

Notas

auhmaan
fonte
Estimado! : D
auhmaan
7

05AB1E , 17 16 bytes

1 bytes economizados graças à carusocomputação .

"GCMG"S×vy²Nè.D»

Experimente online!

A ordem de entrada é W, [G,C,M]

Explicação

10, [3,2,1] usado como exemplo.

"GCMG"S           # push the list ['G','C','M','G']
       ×          # repeat each W times
                  # STACK: ['GGGGGGGGGG', 'CCCCCCCCCC', 'MMMMMMMMMM', 'GGGGGGGGGG']
        v         # for each [string, index] y,N in the list
          ²Nè     # get the amount of layers at index N from the [G,C,M] list
         y   .D   # duplicate the string y that many times
               »  # join strings by newlines
Emigna
fonte
11
"GCMG"S×vy²Nè.D»poderes maravilhosos, ative! Formulário de, código 05AB1E! Além disso, os argumentos são trocadas, mas ainda é 16.
Magia Octopus Urna
@carusocomputing: Tem o benefício de não deixar porcaria não impressa na pilha, mas parece igualmente irredutível para mim.
Emigna
11
Ainda é 1 byte a menos e superará seu empate com MATL;).
Urna de polvo mágico
@carusocomputing: Oooh, quando isso aconteceu? Eu tinha certeza de que tinha 17 anos quando o vi. Agradável! ;)
Emigna
Costumo postar coisas estúpidas e fazer edições um minuto depois que percebo que estou sendo um idiota.
Urna de polvo mágico
6

Ruby, 47 bytes

->w,g,c,m{puts r=[?G*w]*g,[?C*w]*c,[?M*w]*m,r}

graças ao ventero

Ruby, 51 bytes

->w,g,c,m{(?G*g+?C*c+?M*m+?G*g).chars{|i|puts i*w}}

Ligue assim:

f=->w,g,c,m{(?G*g+?C*c+?M*m+?G*g).chars{|i|puts i*w}}

f[10,3,2,1]
Level River St
fonte
->w,g,c,m{puts r=[?G*w]*g,[?C*w]*c,[?M*w]*m,r}é um pouco mais curto
Ventero 17/04
5

PowerShell , 49 bytes

$a,$b=$args;0..2+0|%{,("$('GCM'[$_])"*$a)*$b[$_]}

Experimente online!

Recebe a entrada como quatro argumentos da linha de comando,, width graham chocolate marshmallowarmazena o primeiro $ae o restante em $b(implicitamente como uma matriz). Loops de todo o intervalo 0,1,2,0. Cada loop, indexamos em string GCM, refazemos isso charcomo string e multiplicamos por $a(a largura) e, em seguida, usando o operador de vírgula ,, transforma isso em uma matriz multiplicando o índice apropriado de $b(ou seja, quantos camadas). Essas matrizes de sequência resultantes são todas deixadas no pipeline e a saída é implícita, com uma nova linha entre os elementos.

AdmBorkBork
fonte
5

C, 108 105 bytes

Obrigado a @Quentin por salvar 3 bytes!

#define F(i,c)for(;i--;puts(""))for(j=w;j--;)putchar(c);
i,j;f(w,g,c,m){i=g;F(i,71)F(c,67)F(m,77)F(g,71)}

Experimente online!

Steadybox
fonte
11
#define F(i,c)for(;i--;puts(""))for(j=w;j--;)putchar(c);salva três bytes :)
Quentin
@ Quentin Thanks! Eu me pergunto por que eu perdi em primeiro lugar :)
Steadybox
4

Lote, 146 bytes

@set s=
@for /l %%i in (1,1,%1)do @call set s=G%%s%%
@for %%w in (%2.%s% %3.%s:G=C% %4.%s:G=M% %2.%s%)do @for /l %%i in (1,1,%%~nw)do @echo%%~xw

Baseia-se no comportamento obscuro de echoque muitas vezes pode ignorar o símbolo entre echoe o texto a ser repetido para recolher os quatro loops em um loop aninhado.

Neil
fonte
4

V , 22 bytes

éGÄÀäjMoC
MÀÄkÀÄHdêÀP

Experimente online!

Hexdump:

00000000: e947 c4c0 e46a 4d6f 430a 4d1b c0c4 6bc0  .G...jMoC.M...k.
00000010: c448 64ea c050                           .Hd..P

A ordem de entrada é

Graham, Marshmallow, Chocolate, Width

Explicação:

éG                  " Insert 'G'
  Ä                 " Duplicate this line
   Àäj              " *arg1* times, duplicate this line and the line below it
      M             " Move to the middle line
       o            " Open up a newline, and enter insert mode
        C<cr>M<esc> " Insert 'C\nM'
ÀÄ                  " Make *arg2* copies of this line (Marshmallow)
  k                 " Move up one line
   ÀÄ               " Make *arg3* copies of this line (Chocolate)
     H              " Move to the first line
      dê            " Delete this column
        ÀP          " And paste it horizontally *arg4* times
DJMcMayhem
fonte
Você poderia adicionar uma explicação?
programmer5000
@ programmer5000 Claro! Veja minha edição
DJMcMayhem
4

Excel, 104 bytes

Oh garoto! Uma fórmula que requer quebras de linha.

=REPT(REPT("G",A1)&"
",A2)&REPT(REPT("C",A1)&"
",A3)&REPT(REPT("M",A1)&"
",A4)&REPT(REPT("G",A1)&"
",A2)

A1tem Largura
A2tem Graham
A3tem Chocolate
A4tem Mallow


Se a pré-formatação for permitida, você poderá formatar a célula para Texto Vertical e reduzir a fórmula para 65 bytes:

=REPT(REPT("G",A2)&REPT("C",A3)&REPT("M",A4)&REPT("G",A2)&"
",A1)
Engenheiro Toast
fonte
4

Gelatina , 13 bytes

“GCM”ẋ"ṁ4Fẋ€Y

Um programa diádico. As entradas são: [Graham's, Chocolates, Marshmallows], Width.

Experimente online!

Quão?

“GCM”ẋ"ṁ4Fẋ€Y - Main link: [g,c,m], w    e.g. [1,2,1], 2
“GCM”         - literal ['G', 'C', 'M']
      "       - zip that and [g,c,m] with the dyadic operation:
     ẋ        -     repeat list               [['G'],['C','C'],['M']]
       ṁ4     - mould like [1,2,3,4]          [['G'],['C','C'],['M'],['G']]
         F    - flatten                       ['G','C','C','M','G']
          ẋ€  - repeat €ach w times           [['G','G'],['C','C'],['C','C'],['M','M'],['G','G']]
            Y - join with line feeds          ['G','G','\n','C','C','\n','C','C','\n','M','M','\n','G','G']
              - implicit print                GG
                                              CC
                                              CC
                                              MM
                                              GG
Jonathan Allan
fonte
3

PHP, 85 bytes

for($m=$argv;$i++<4;)for($c=$m[_2342[$i]]*$m[1];$c;)echo$c--%$m[1]?"":"\n",_GCMG[$i];

ou

for($m=$argv;$i++<4;)for($c=$m[_2342[$i]];$c--;)echo"\n".str_pad("",$m[1],_GCMG[$i]);

Versões Online

PHP, 96 bytes

<?[$n,$w,$G,$C,$M]=$argv;for(;$i<4;$i++)for($t=${"$n[$i]"};$t--;)echo"\n".str_pad("",$w,$n[$i]);

Versão Online

Expandido

[$n,$w,$G,$C,$M]=$argv; # $argv[0] must contain a file beginning with "GCMG"
for(;$i<4;$i++) # Take the first 4 values of the filename
for($t=${"$n[$i]"};$t--;) # How many rows should be printed
echo"\n".str_pad("",$w,$n[$i]); # print $w times the actual letter
Jörg Hülsermann
fonte
3

05AB1E , 14 bytes

Código:

…GCM‚øü׬)˜S×»

Usa a codificação CP-1252 . Experimente online!

Explicação:

…GCM              # Push the string "GCM"
    ‚             # Wrap with the input
     ø            # Transpose the array
      ü×          # Compute the string product of each element (['A', 3] --> 'AAA')
        ¬)˜       # Get the last element and append to the list
           S      # Split the list
            ×     # Vectorized string multiplication with the second input
             »    # Join by newlines and implicitly print
Adnan
fonte
3

Python 2 ,6757 bytes

(Editar: agora que as matrizes são permitidas, não é necessário ingressar em uma nova linha.)

def s(w,g,c,m):g=['G'*w]*g;print g+['C'*w]*c+['M'*w]*m+g
rassar
fonte
3

C # (150 bytes)

void S(int w,int g,int c,int m){P(w,g,'G');P(w,c,'C');P(w,m,'M');P(w,g,'G');}void P(int w,int i,char c){while(i-->0)Console.Write("\n".PadLeft(w,c));}

Ungolfed:

void SMores(int w, int g, int c, int m)
{
    Print(w,g,'G');
    Print(w,c,'C');
    Print(w,m,'M');
    Print(w,g,'G');
}
void Print(int w, int i, char c)
{
    while(i-->0)
        Console.Write("\n".PadLeft(w,c));
}
Rik
fonte
3

Java, 138 bytes

String s(int w,int g,int c,int m){String b="";int i=-g-c,j;for(;i++<g+m;){for(j=0;j++<w;)b+=i<=-c|i>m?'G':i<=0?'C':'M';b+="\n";}return b;}

Experimente online!

Explicação:

String s(int w, int g, int c, int m) {
    String b = "";
    int i = -g - c, j;              // i is the layer
    for (; i++ < g + m;) {          // Repeat (G+C+M+G) times, starting from -g-c to m+g 
                                    //Layer 0 is the last chocolate layer

        for (j = 0; j++ < w;) {     // Repeat W times
            b += 
                i <= -c | i > m ? 'G': //If before the chocolate or after the marshmellow, output a G
                i <= 0 ? 'C' :      // Else if equal or before last chocolate layer output C
                'M';                //Otherwise output an M
        }
        b += "\n";
    }
    return b;
}
Brenton P.
fonte
Nada mal ... para Java!
programmer5000
3

Rápido, 138 137 134 130 bytes

Guardado 7 bytes graças a @Kevin

let f=String.init(repeating:count:)
let r={w,g,c,m in f(f("G",w)+"\n",g)+f(f("C",w)+"\n",c)+f(f("M",w)+"\n",m)+f(f("G",w)+"\n",g)}

Duas funções que retornam o valor esperado: fé uma função auxiliar e ré a função real do tipo lamdba que gera a saída. Uso: print(r(10,3,2,1))

Confira!

Mr. Xcoder
fonte
Você pode salvar vários caracteres apenas referenciando o inicializador de string diretamente ( var f=String.init(repeating:count:);). E isso não salva nenhum personagem, mas não custa, então os dois deveriam realmente ser let.
21717 Kevin
E mais 3, descartando os argumentos explícitos em r( let r={f(f("G",$0)+"\n",$1)+f(f("C",$0)+"\n",$2)+f(f("M",$0)+"\n",$3)+f(f("G",$0)+"\n",$1)})
Kevin
@ Kevin Obrigado, eu não tinha idéia de que você pode inicializar um valor para algo como isto: f=String.init(repeating:count:)...
Mr. Xcoder
@ Kevin, quando se trata de sua segunda sugestão, parece que excede o número de bytes em UTF-8, verificou a contagem de bytes no TIO, não sei por que
#
2

JavaScript (ES6), 91 bytes

Inclui nova linha à direita.

f=

(w,g,c,m)=>(b=(`G`[r=`repeat`](w)+`
`)[r](g))+(`C`[r](w)+`
`)[r](c)+(`M`[r](w)+`
`)[r](m)+b

console.log(f(10,3,2,1))

Shaggy
fonte
2

JS (ES6), 87 bytes

x=(w,g,c,m)=>(f=>f`Gg`+f`Cc`+f`Mm`+f`Gg`)(([[x,y]])=>(x.repeat(w)+`
`).repeat(eval(y)))

xatua como uma função lambda autônoma. O resultado tem uma nova linha à direita.

Experimente um trecho:

Florrie
fonte
2

C, 90 bytes (com base na resposta da Steadybox )

Renomeou as variáveis ​​e explorou o operador do pré-processador de stringification para reduzir os parâmetros da macro. Espero postar esta idéia como sua própria resposta está bem :)

#define F(x)for(i=x;i--;puts(""))for(j=w;j--;)printf(#x);
i,j;f(w,G,C,M){F(G)F(C)F(M)F(G)}

Link TIO

Quentin
fonte
Será que upvote, mas limite hit voto :(
programmer5000
2

F # ( 148 99 bytes)

let s w q="GCMG"|>Seq.iteri(fun i c->for j in 1..(q|>Seq.item(i%3))do printf"%A"("".PadLeft(w,c)))

Uso:

s 10 [2;3;4]

Ungolfed:

let smores width quantities =
    "GCMG"
    |>Seq.iteri(fun i char ->
        for j in 1..(quantities|>Seq.nth(i%3))
            do printf "%A" ("".PadLeft(width,char))) 

Eu ainda sou novo no F #, então se eu fiz algo estranho ou estúpido, por favor me avise.

Rik
fonte
Um link para F # seria bom.
programmer5000
2

JavaScript ES6, 69 68 66 bytes

Obrigado @Arnauld por jogar fora um byte

a=>b=>"GCMG".replace(/./g,(c,i)=>`${c.repeat(a)}
`.repeat(b[i%3]))

Experimente online!

Explicação

Recebe entrada em formato ao curry (Width)([Graham,Chocolate,Marshmallow])

Usar .replace(/./g,...)substitui cada caractere na sequência GCMGpelo valor de retorno da função(c,i)=>`${c.repeat(a)} `.repeat(b[i%3])

`${c.repeat(a)} `cria cada linha do graham cracker com uma nova linha anexada .repeat(b[i%3])repete essa linha o número necessário de vezes

fəˈnɛtɪk
fonte
Usar replace()salvaria um byte:a=>"GCMG".replace(/./g,(c,i)=>`${c.repeat(a[0])}\n`.repeat(a[1+i%3]))
Arnauld
1

JS (ES6), 111 bytes

n=`
`,G="G",C="C",M="M",r=(s,t)=>s.repeat(t),(w,g,c,m)=>r(r(G,w)+n,g)+r(r(C,w)+n,c)+r(r(M,w)+n,m)+r(r(G,w)+n,g)
programmer5000
fonte
1

Mathematica 102 Bytes (100 caracteres)

Ouvi dizer que o s'mores embutido não sai até a V12.

s=StringRepeat;StringReplace[s@@@({Characters@"GCMG",#/.#[[4]]->#[[1]]})<>"",x_:>x~s~#[[4]]<>"\n"]&

Bem simples, usando a idéia de construir uma coluna primeiro. Nomes longos de função desperdiçam 35 bytes. O símbolo de aparência de uma caixa é na verdade um caractere de transposição e colará perfeitamente no Mathematica.

Uso: %@{Graham, Chocolate, Marshmallows, Width} por exemplo %@{3, 2, 1, 11}

Kelly Lowder
fonte
1

Java 7, 226 bytes

String c(int w,int g,int c,int m){return x(w,'G',g)+x(w,'C',c)+x(w,'M',m)+x(w,'G',g);}String x(int w,char c,int x){String r="";for(;x-->0;r+=x(w,c));return r;}String x(int w,char c){String r="";for(;w-->0;r+=c);return r+"\n";}

OU (também 226 bytes ):

String c(int w,int g,int c,int m){return x(w,71,g)+x(w,67,c)+x(w,77,m)+x(w,71,g);}String x(int...a){String r="";for(;a[2]-->0;r+=x(a[0],(char)a[1]));return r;}String x(int w,char c){String r="";for(;w-->0;r+=c);return r+"\n";}

Explicação:

String c(int w,int g,int c,int m){  // Main method with four integer parameters and String return-type
  return x(w,'G',g)                 //  Return all Graham-rows
        +x(w,'C',c)                 //   plus all Chocolate-rows
        +x(w,'M',m)                 //   Plus all Marshmallon-rows
        +x(w,'G',g);                //   Plus all Graham-rows again
}                                   // End of main method

String x(int w,char c,int x){       // Separate method (1) with two integers & character parameters and String return-type
  String r="";                      //  Result-String
  for(;x-->0;                       //  For the given amount of rows of a certain type
             r+=x(w,c)              //   Append the result-String with a row of the given character
  );                                //  End of for-loop (implicit / no body)
  return r;                         //  Return the result-String
}                                   // End of separate method (1)

String x(int w,char c){             // Separate method (2) with integer and character parameters and String return-type
  String r="";                      //  Result-String
  for(;w-->0;                       //  For the amount given as width
             r+=c                   //   Append the character to the row
  );                                //  End of for-loop (implicit / no body)
  return r+"\n";                    //  Return the result-String including a new-line
}                                   // End of separate method (2)

Código do teste:

Experimente aqui.

class M{
  String c(int w,int g,int c,int m){return x(w,'G',g)+x(w,'C',c)+x(w,'M',m)+x(w,'G',g);}String x(int w,char c,int x){String r="";for(;x-->0;r+=x(w,c));return r;}String x(int w,char c){String r="";for(;w-->0;r+=c);return r+"\n";}

  public static void main(String[] a){
    System.out.print(new M().c(10,3,2,1));
  }
}

Resultado:

GGGGGGGGGG
GGGGGGGGGG
GGGGGGGGGG
CCCCCCCCCC
CCCCCCCCCC
MMMMMMMMMM
GGGGGGGGGG
GGGGGGGGGG
GGGGGGGGGG
Kevin Cruijssen
fonte
11
Nada mal ... para java!
programmer5000
11
@ programmer5000 Hehe, obrigado! Eu gosto de jogar golfe no Java 7 (e às vezes 8), embora eu não ache que ele jamais concorra com outras respostas. O único momento em que um pouco competiu com uma resposta Java foi com essa resposta de 8 bytes e essa resposta de 19 bytes. , realmente superando o Python pela primeira vez. ; p Embora essas linguagens de golfe com envios de 1 ou 2 bytes ainda deixem o Java na poeira, é claro.
Kevin Cruijssen
1

Haskell , 91 bytes

import Data.List
(#)=replicate
f w g c m=intercalate"\n"$map(w#)$g#'G'++c#'C'++m#'M'++g#'G'

Deve ser bastante auto-explicativo. Como foi observado em um comentário que matrizes de caracteres são permitidas, aqui está uma versão de 58 bytes que retorna uma lista de strings (uma para cada camada):

(#)=replicate
f w g c m=map(w#)$g#'G'++c#'C'++m#'M'++g#'G'
Julian Wolf
fonte