Segni di griglia molto semplici


29

Scrivi un programma o una funzione che accetta tre numeri interi positivi, W, H e N. Stampa o restituisce una griglia W × H di .dove ogni N ° .nel normale ordine di lettura inglese è sostituito da un X.

Ad esempio, dato W = 7, H = 3, N = 3, la griglia è larga 7 caratteri e 3 alta, e ogni terzo carattere che legge in alto a sinistra è un X:

..X..X.
.X..X..
X..X..X

Allo stesso modo, se l'ingresso è W = 10, H = 4, N = 5, l'uscita sarebbe:

....X....X
....X....X
....X....X
....X....X

Gli appunti

  • "Normale ordine di lettura inglese" significa andare da sinistra a destra su ogni riga, dalla riga superiore alla fine.
  • Quando N è 1, allora tutti .diventeranno X.
  • È possibile utilizzare due caratteri ASCII stampabili distinti al posto di .e X.
    • Se si utilizza space ( ), gli spazi finali non sono richiesti quando il risultato sarebbe visivamente lo stesso. (Sono ancora necessarie righe vuote.)
    • Non è possibile utilizzare qualcos'altro al posto delle newline che modellano la griglia.
  • L'esatto formato di input e l'ordine di W, H e N non sono molto importanti. Cose come [H,W,N]o N\nW,Hvanno bene.
  • Una nuova riga finale nell'output va bene.
  • Vince il codice più breve in byte!

Esempi

W = 5, H = 3, N = 1
XXXXX
XXXXX
XXXXX

W = 5, H = 3, N = 2
.X.X.
X.X.X
.X.X.

W = 5, H = 3, N = 3
..X..
X..X.
.X..X

W = 5, H = 3, N = 4
...X.
..X..
.X...

W = 5, H = 3, N = 5
....X
....X
....X

W = 5, H = 3, N = 6
.....
X....
.X...

W = 5, H = 3, N = 7
.....
.X...
...X.

W = 5, H = 3, N = 15
.....
.....
....X

W = 5, H = 3, N = 16 (or more)
.....
.....
.....

W = 1, H = 1, N = 1
X

W = 1, H = 1, N = 2 (or more)
.

W = 8, H = 6, N = 2
.X.X.X.X
.X.X.X.X
.X.X.X.X
.X.X.X.X
.X.X.X.X
.X.X.X.X

W = 8, H = 6, N = 3
..X..X..
X..X..X.
.X..X..X
..X..X..
X..X..X.
.X..X..X

W = 8, H = 6, N = 4
...X...X
...X...X
...X...X
...X...X
...X...X
...X...X

W = 8, H = 6, N = 7
......X.
.....X..
....X...
...X....
..X.....
.X......

W = 8, H = 6, N = 16
........
.......X
........
.......X
........
.......X

W = 37, H = 1, N = 4
...X...X...X...X...X...X...X...X...X.

W = 1, H = 10, N = 8
.
.
.
.
.
.
.
X
.
.

1
È corretto supporre che la restrizione " Non è possibile utilizzare qualcos'altro al posto delle newline che modellano la griglia " include " Non è possibile restituire un array ["..X..X.", ".X..X..", "X..X..X"]come griglia "?
Peter Taylor,

@PeterTaylor Correct
Hobby di Calvin,

Risposte:


13

J, 9 5 byte

$":&1

Usa gli spazi e 1's e si aspetta input nel moduloH W f N

Spiegazione:

$":&1
   &1 bonds the fixed right argument 1 to ":
 ":   formats the right argument number (1) to take up left argument (N) number of cells
      padding with spaces, resulting  in "  1"
$     reshape to H-by-W with repeating the string if necessary 

Uso:

   3 7 ($":&1) 3
  1  1 
 1  1  
1  1  1

Provalo online qui.


Tronca anche l'array se W * H è inferiore a N?
Martin Ender,

@ MartinBüttner Sì.
randomra,

Se l'argomento è ($":&1), questo non conta come 7 byte?
Reto Koradi,

1
No, ()non fanno parte della funzione; potresti scrivere f =. $":&1e poi 3 7 f 3.
Lynn,

11

Python 2, 60 byte

w,h,n=input()
s='%%%dd'%n%0*w*h
exec"print s[:w];s=s[w:];"*h

Questo stampa lo spazio e 0al posto di .e X. L'input viene considerato come una tupla sotto forma di w,h,n.


4
È un formato di stringa intelligente.
xnor

7

J, 12 byte

$'X'_1}#&'.'

Questa è una funzione diadica che accetta l'array H Wcome argomento sinistro e Ncome argomento destro. Uso:

  f =: $'X'_1}#&'.'
  3 5 f 3
..X..
X..X.
.X..X

Spiegazione

$'X'_1}#&'.'
         '.'  The character '.'
       #&     repeated N times
    _1}       with the last character
 'X'          replaced by 'X'
$             reshaped into an HxW array

Lo strumento giusto per il lavoro ?
Addison Crump,

L'uso del X.più breve è davvero?
lirtosiast

@ThomasKwa Lo credo. Ho provato a usare i numeri 0 e 1 invece, ma poi ho dovuto circondare quello accanto _1con parentesi e formattare gli spazi tra le colonne, e alla fine è stato più lungo.
Zgarb,

5

BBC Basic, 67 caratteri ASCII, dimensione file tokenizzata 43 byte

Scarica l'interprete su http://www.bbcbasic.co.uk/bbcwin/download.html

INPUTw,h,n:WIDTHw:PRINTLEFT$(STRING$(w*h,STRING$(n-1,".")+"X"),w*h)

BBC Basic ha un comodo comando per limitare la larghezza del campo. Usiamo STRING$per fare w*hcopie della stringa di punti n-1seguita da una X. Quindi usiamo LEFT $ per troncare questo ai w*hcaratteri.


4

Minkolang 0,14 , 34 30 28 22 byte

n2-D1n$zn[z[1Rd6ZO]lO]

Controlla un caso qui e controlla tutti i casi di test qui. Si aspetta input come N W H.

Spiegazione

n                 Take number from input (N)
 2-               Subtract 2
   D              Duplicate the top of stack (which is 0 because it's empty) N-2 times
    1             Push a 1 onto the stack
n                 Take number from input (W)
 $z               Store W in the register (z)
n                 Take number from input (H)
 [                Open a for loop that repeats H times
  z[              Open a for loop that repeats W times
    1R            Rotate 1 step to the right
      d           Duplicate top of stack
       6Z         Convert number to string
         O        Output as character
          ]       Close for loop
           lO     Output a newline
             ]    Close for loop

Poiché la casella di codice di Minkolang è toroidale, questo si concluderà all'inizio. Come tutti naccetteranno ora -1, questo alla fine si blocca con un errore e nessun ulteriore output, che è consentito.


Quindi è facile per te confrontare. (Nota che non è esattamente lo stesso codice.)
El'endia Starman,

Davanti a te! : P :)
El'endia Starman,

4

CJam (16 byte)

{1$*,:)@f%:!/N*}

Prende l'input nello stack nell'ordine N W H, restituisce stringa usando caratteri 0e 1. Demo online

Dissezione

{        e# Anonymous function. Stack: N W H
  1$*,   e# Stack: N W [0 1 ... W*H-1]
  :)     e# Stack: N W [1 2 ... W*H]
  @f%    e# Stack: W [1%N 2%N ... W*H%N]
  :!     e# Map Boolean not, taking 0 to 1 and anything else to 0
  /      e# Split into W-sized chunks (i.e. the lines of the grid)
  N*     e# Join the lines with newlines
}

; -; mi hai battuto ;-; ma buon lavoro! : D
anOKsquirrel

4

APL, 13 byte

{⍪,/⍕¨⍺⍴⍵=⍳⍵}

Questo prende H Wcome argomento sinistro e Ncome argomento giusto.

Spiegazione:

{⍪,/⍕¨⍺⍴⍵=⍳⍵}     Dyadic function (args are ⍺ on left, ⍵ on right):
        ⍵=⍳⍵      ⍵ = (1 2 3...⍵); this is ⍵-1 0s followed by a 1
      ⍺⍴          Shape by the left argument; e.g. 5 3 gives a 5x3 array
    ⍕¨            Stringify each entry
  ,/              Join the strings in each row 
 ⍪                Make column vector of strings

Provalo online: primi casi di test , ultimo caso di test . Nota che sebbene questo mostri un output in scatola, la mia copia di Dyalog no.


Quelle sono in realtà solo caselle o l'app SE non visualizza correttamente i personaggi?
Carcigenicato il

@Carcigenicato Non sono scatole. I caratteri devono essere visualizzati correttamente sul collegamento online, poiché ha un carattere diverso.
lirtosiast

Ah, giusto. Ho perso questo. Hai una tastiera speciale o sei un masochista?
Carcigenicato il

@Carcigenicate Su tryapl (e sull'edizione Dyalog per studenti) puoi digitare caratteri APL usando i backtick. `a si trasforma in ⍺, ad esempio.
lirtosiast

2

CJam, 20 byte

q~:Z;_@*,:){Z%!}%/N*

Accetta input come HW N.


whoops, invalid
anOKsquirrel

risolto: D: D: D: D
anOKsquirrel il

Ancora molto più a lungo di alcune delle soluzioni in altre lingue, ma sono arrivato a 18 byte con CJam:, q~_@*,@(S*'X+f=/N*con input per NH W.
Reto Koradi

1
@RetoKoradi Togline un altro sostituendolo 'Xcon 0, e sarà 17
Sp3000

2

MATLAB, 61 55 54 byte

function c=g(d,n);b=ones(d);b(n:n:end)=0;c=[b'+45,''];

Wow, ho pensato che MATLAB sarebbe stato competitivo in questo, ma quanto mi sbagliavo!

La funzione crea una matrice di 1 delle dimensioni corrette, quindi imposta ogni ennesimo elemento su 0 (MATLAB gestisce implicitamente il wrapping degli indici in 2D). Aggiungiamo quindi 45 ('-') a questo numero e convertiamo in un array di caratteri da restituire.

Le domande consentono di utilizzare due distinti caratteri ASCII per la griglia, sto usando '-' al posto di 'x' per salvare alcuni byte. Anche il formato di input non è fisso, quindi dovrebbe essere fornito come [w h],n- cioè una matrice di larghezza e altezza, e quindi n come secondo parametro.


Funziona anche con Octave e può essere provato online qui . La funzione è già impostata nell'area di lavoro collegata, quindi puoi semplicemente chiamare ad esempio:

g([4,5],3)

Quali uscite:

..-.
.-..
-..-
..-.
.-..

Salva un byte:c=[b'+45,''];
Stewie Griffin,

@StewieGriffin Grazie :). Per qualche motivo, quando avevo provato a non pensare che salvasse alcun byte, dovevo aver contato male!
Tom Carpenter,

2

Elaborazione, 93 byte (Java, 104 byte)

void f(int a,int b,int c){for(int i=0;i<a*b;i++)print((i%c>c-2?"X":".")+(i%a>a-2?"\n":""));}}

Il motivo per cui ho usato Elaborazione anziché Java è che non è necessario accedere al puntatore suggerendo System.outperché una variabile locale è direttamente accessibile. Ho guadagnato 11 byte con questo. La funzione non restituisce il risultato ma lo stampa.


2
Puoi salvarne un altro spostando l'incremento (come i++%a...) e sembra che tu abbia lasciato un pezzo }di ricambio alla fine che non ti serve, anche.
Geobits il

2

Japt , 33 32 27 25 byte

SpW-1 +Q p-~U*V/W f'.pU)·

Accetta input nel formato W H N. Usi  e "al posto di .e X, rispettivamente. Provalo online!

Ungolfed e spiegazione

SpW-1 +Q p-~U*V/W f'.pU)·qR
          // Implicit: U = width, V = height, W = interval
SpW-1 +Q  // Create a string of W - 1 spaces, plus a quotation mark.
p-~U*V/W  // Repeat this string ceil(U*V/W) times.
f'.pU)    // Split the resulting string into groups of U characters.
qR        // Join with newlines.
          // Implicit: output last expression

Suggerimenti benvenuti!


2

Vitsy , 25 23 22 21 19 byte

Grazie a @ Sp3000 per aver sottolineato che non ho bisogno di un duplicato e di salvarmi 2 byte!

Accetta input come N W H. Provalo online!

1}\0XrV\[V\[{DN]aO]
1                         Push 1 to the stack.
 }                        Push the backmost to the front and subtract 2.
  \0X                     Duplicate the 0 temp variable times.
     r                    Reverse the stack.
      V                   Save as final global variable.
       \[         ]       Repeat top item times.
         V\[   ]          Repeat global variable times.
            {DO           Duplicate, output, then shift over an item.
                aO        Output a newline.

1

K, 21 19 18 14 byte

Accetta argomenti come (H W;N):

{".X"x#y=1+!y}

In azione:

  f:{".X"x#y=1+!y};

  f.'((3 5;1);(3 5;2);(3 7;3);(4 10;5);(3 5;16))
(("XXXXX"
  "XXXXX"
  "XXXXX")
 (".X.X."
  "X.X.X"
  ".X.X.")
 ("..X..X."
  ".X..X.."
  "X..X..X")
 ("....X....X"
  "....X....X"
  "....X....X"
  "....X....X")
 ("....."
  "....."
  "....."))

1

Pyth - 19 18 17 byte

Spero di giocare a golf di più. Accetta input come N\n[W, H].

jc.[k+*dtvzN*FQhQ

Test Suite .


1

R, 66 byte

function(w,h,n){x=rep(".",a<-w*h);x[1:a%%n<1]="X";matrix(x,h,w,T)}

Questa è una funzione che accetta tre numeri interi e restituisce una matrice di valori di carattere. Per chiamarlo, assegnarlo a una variabile.

Ungolfed:

f <- function(w, h, n) {
    # Get the area of the square
    a <- w*h

    # Construct a vector of dots
    x <- rep(".", a)

    # Replace every nth entry with X
    x[1:a %% n == 0] <- "X"

    # Return a matrix constructed by row
    matrix(x, nrow = h, ncol = w, byrow = TRUE)
}

1

JavaScript (ES6), 65 60 byte

(w,h,n)=>eval('for(i=r=``;i++<w*h;i%w?0:r+=`\n`)r+=i%n?0:1')

Spiegazione

(w,h,n)=>eval('    // use eval to remove need for return keyword
  for(
    i=             // i = current grid index
      r=``;        // r = result
    i++<w*h;       // iterate for each index of the grid
    i%w?0:r+=`\n`  // if we are at the end of a line, print a newline character
                   // note: we need to escape the newline character inside the template
  )                //       string because this is already inside a string for the eval
    r+=i%n?0:1     // add a 0 for . or 1 for X to the result
                   // implicit: return r
')

Test


1

Mathematica, 85 byte

""<>(#<>"
"&/@ReplacePart["."~Table~{t=# #2},List/@Range[#3,t,#3]->"X"]~Partition~#)&

Come con molte altre soluzioni, questo crea una singola riga, quindi la suddivide in partizioni.


1

JavaScript (ES6), 55 byte

(w,h,n)=>(f=i=>i++<w*h?+!(i%n)+(i%w?"":`
`)+f(i):"")(0)

Utilizza IIFE f per eseguire il loop per salvare un'istruzione return.

Uscita per w = 5, h = 3, n = 7:

00000
01000
00010

1

C #, 185 byte

using System;class x{void a(int w,int h,int n){int c=1;for(int i=0;i<h;i++){for(int j=1;j<=w;j++){if(c%n==0){Console.Write("x");}else{Console.Write(".");}c++;}Console.WriteLine();}}}

Per una lettura più leggibile:

using System;
class x
{
  void a(int w, int h, int n)
  {
    int c = 1;
    for (int i = 0; i < h; i++)
    {
        for (int j = 1; j <= w; j++)
        {
            if (c % n == 0)
            {
                Console.Write("x");
            }
            else
            {
                Console.Write(".");
            }
            c++;
        }
        Console.WriteLine();
     }
  }
}

Uso:

new x().a(7, 3, 3);

0

Julia, 50 byte

f(w,h,n)=reshape([i%n<1?"X":"." for i=1:w*h],w,h)'

Ciò crea una funzione fche accetta tre numeri interi e restituisce una matrice di stringhe bidimensionali.

Ungolfed:

function f(w::Integer, h::Integer, n::Integer)
    # Construct an array of strings in reading order
    a = [i % n == 0 ? "X" : "." for i = 1:w*h]

    # Reshape this columnwise into a w×h array
    r = reshape(a, w, h)

    # Return the transpose
    return transpose(r)
end

0

Rubino, 67 56 byte

->w,h,n{(1..h).map{(1..w).map{o,$.=$.%n<1?1:0,$.+=1;o}}}

Stampa di un array poiché è accettato.

67 byte

->w,h,n{i=1;puts (1..h).map{(1..w).map{o,i=i%n<1?1:0,i+=1;o}.join}}

Ungolfed:

-> w, h, n {
  (1..h).map {
    (1..w).map {
      o, $. = $.%n < 1 ? 1 : 0, $.+ = 1
      o
    }
  }
}

Uso:

->w,h,n{(1..h).map{(1..w).map{o,$.=$.%n<1?1:0,$.+=1;o}}}[8,6,7]
=> [[0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 0, 0]]

0

MATLAB, 44 byte

Nota: approccio molto diverso da quello utilizzato da Tom Carpenter.

@(x,y)char(reshape(~mod(1:prod(x),y),x)'+46)

Definisce una funzione anonima che accetta input come [W,H],N. Ho affrontato questo problema utilizzando non-il-modulo-of- N per un array 1: W * H e quindi semplicemente rimodellando la soluzione in un array bidimensionale, che viene quindi convertito in un array di caratteri.

Esempio di output per [5,3],7:

.....
./...
.../.

0

Lisp comune, SBCL, 94 byte

(lambda(a b c)(dotimes(i(* a b))(format t"~:[.~;X~]~@[~%~]"(=(mod(1+ i)c)0)(=(mod(1+ i)a)0))))

Spiegazione

~:[.~;X~] <-- takes argument - if argument is true write ., if false write X
~@[~%~] <-- takes argument - if argument is true write newline, if not treat argument as if it was not used

(=(mod(1+ i)c)0)(=(mod(1+ i)a)0) sembra piuttosto sciocco (perché è così simile ma non so se può essere risolto, risparmiando byte

Io uso (1+ i)invece di iperché dotimesinizia da i=0e voglio iniziare da 1. È anche utile perché posso usare (* a b)invece di(1+(* a b))


-1

Java, 185 183 byte

Grazie Thomas Kwa, per avermi salvato 2 byte!

interface B{static void main(String[] a){int w = Byte.parseByte(a[0]);for(int i=0;i++<w*Byte.parseByte(a[1]);)System.out.print((i%Byte.parseByte(a[2])>0?".":"X")+(i%w<1?"\n":""));}}

Ungolfed (ish):

interface A {
  static void main(String[] a) {
    int w = Byte.parseByte(a[0]);
    for(
      int i = 0;
      i++ < w*Byte.parseByte(a[1]);
    )
      System.out.print((
        i%Byte.parseByte(a[2]) > 0 ? "." : "X"
        )+(
        i%w < 1 ? "\n" : ""
      ));
  }
}

Uso:

$ java B 5 3 7
.....
.X...
...X.

Forse un giorno java vincerà: P


Penso che puoi usare al >0posto di !=0e <1invece di ==0.
lirtosiast
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.