vote up 26 vote down star
17

The challenge

The shortest code by character count that will generate a beehive from user input.

A beehive is defined a a grid of hexagons in a size inputted by the user as two positive numbers greater than zero (no need to validate input). The first number (W) represents the width of the beehive - or - how many hexagons are on each row. The second number (H) represents the height of the beehive - or - how many hexagons are on each column.

A Single hexagon is made from three ASCII characters: _, / and \, and three lines:

 __
/  \
\__/

Hexagons complete each other: the first column of the beehive will be 'low', and the second will be high - alternating and repeating in the same pattern forming W hexagons. This will be repeated H times to form a total of WxH hexagons.

Test cases:

Input:
	1 1
Output:
	 __
	/  \
	\__/


Input:
	4 2
Output:
	    __    __
	 __/  \__/  \
	/  \__/  \__/
	\__/  \__/  \
	/  \__/  \__/
	\__/  \__/


Input:
	2 5
Output:
	    __ 
	 __/  \
	/  \__/
	\__/  \
	/  \__/
	\__/  \
	/  \__/
	\__/  \
	/  \__/
	\__/  \
	/  \__/
	\__/


Input:
	11 3
Output:
	    __    __    __    __    __
	 __/  \__/  \__/  \__/  \__/  \__
	/  \__/  \__/  \__/  \__/  \__/  \
	\__/  \__/  \__/  \__/  \__/  \__/
	/  \__/  \__/  \__/  \__/  \__/  \
	\__/  \__/  \__/  \__/  \__/  \__/
	/  \__/  \__/  \__/  \__/  \__/  \
	\__/  \__/  \__/  \__/  \__/  \__/


Code count includes input/output (i.e full program).

flag
3  
Stefan: Perhaps, but the way the question was posed, the homeworky smell was masked by a spicy barbecue sauce, so it actually doesn't taste that bad. ;) – John at CashCommons Oct 8 at 19:55
2  
This is no homework, I have a job. – LiraNuna Oct 8 at 19:57
1  
LiraNuna, I believe you, but I am just not smart enough to answer. – Xaisoft Oct 8 at 19:59
6  
I'm waiting for the first 250 line C# answer - those are always funny in a "golf" question – 1800 INFORMATION Oct 8 at 20:02
8  
LiraNuna is the monarch of golf questions. Look for a new one every Thursday! – Instantsoup Oct 8 at 20:10
show 10 more comments

13 Answers

vote up 22 vote down check

Perl, 99 characters

@P=map{$/.substr$".'__/  \\'x99,$_,$W||=1+3*pop}0,(3,6)x pop;
chop$P[0-$W%2];print"    __"x($W/6),@P

Last edit: Saved one character replacing -($W%2) with 0-$W%2 (thanks A. Rex)

Explanation:

For width W and height H, the output is 2+2 * H lines long and 3 * W+1 characters wide, with a lot of repetition in the middle of the output.

For convenience, we let $W be 3 * W + 1, the width of the output in characters.

The top line consists of the pattern " __", repeated W/2 == $W/6 times.

The even numbered lines consist of the repeating pattern "\__/ ", truncated to $W characters. The second line of output is a special case, where the first character of the second line should be a space instead of a \.

The odd numbered lines consist of the repeating pattern "/ \__", truncated to $W characters.

We construct a string: " " . "__/ \" x 99. Note that the beginning of this string is the desired output for the second line. This line starting at position 3 is the desired output for the odd lines, and starting at position 6 for the even numbered lines.

The LIST argument to the map call begins with 0 and is followed by H repetitions of (3,6). The map call creates a list of the substrings that begin at the appropriate positions and are $W = 3 * W + 1 characters long.

There is one more adjustment to make before printing the results. If W is odd, then there is an extra character on the second line ($P[0]) that needs to be chopped off. If W is even, then there is an extra character on the bottom line ($P[-1]) to chop.

link|flag
3  
I knew Python wouldn't be beating Perl for long. – Chris Lutz Oct 9 at 5:27
Do you need the parenthesis around the arguments to map() or did I just shorten your code by 2 characters? – Chris Lutz Oct 9 at 6:14
Apparently you do not need them. The parentheses in substr() are unnecessary too -- down to 113. – mobrule Oct 9 at 6:21
You might change the first line to $_=<>;($W,$H)=split; - it's not any shorter, but it plays nicer with whitespace (entering 2 3 will still be valid). – Chris Lutz Oct 9 at 6:35
Also, you can change $"=$/;print"@P" to $,=$/;print@P and shave the two quotation marks. – Chris Lutz Oct 9 at 6:37
show 13 more comments
vote up 10 vote down

C89 (136 characters)

x;y;w;main(h){for(h=scanf("%d%d",&w,&h)*h+2;y++
<h;++x)putchar(x>w*3-(y==(w&1?2:h))?x=-1,10:
"/  \\__"[--y?y-1|x?(x+y*3)%6:1:x%6<4?1:5]);}
link|flag
2  
Do you need '{' and '}' for 'for' loops? – rekli Oct 8 at 22:24
1  
Would totally be cooler if you reversed the string literal and the index. Also, you technically need to #include <stdio.h> or something in order to get a proper definition for the scanf() function. – Chris Lutz Oct 8 at 22:25
@Lutz, I've been told I don't need to. Reversing the literal and index won't work unless I add parentheses. @rekli, I can't believe I missed that (and I'm not one to miss such things!). Thanks. – strager Oct 8 at 22:28
1  
Chris: why would it matter in any tiny way if a code-golf C program was standard conforming? There are thousands and thousands of non-C99-conforming lines in Linux, because that's how the author wants it. There are no ANSI police. – DigitalRoss Oct 9 at 0:33
4  
@DigitalRoss, I could write a "C compiler" which accepts any input and produces a binary printing the beehive given parameters from stdin, and call the code I write non-standard C. Conformity to some standard is required for a reasonable, acceptable solution. – strager Oct 9 at 0:41
show 11 more comments
vote up 9 vote down

Python 2.6 - 144 characters including newlines

I can save about 20 more characters if the inputs are allowed to be comma separated.

C,R=map(int,raw_input().split())
print C/2*"    __"+"\n "+("__/  \\"*99)[:3*C-C%2]
r=0
exec'r+=3;print ("\__/  "*99)[r:r+3*C+1-r/6/R*~C%2];'*2*R

The version that takes input from the command line is 4 more bytes:

import sys
C,R=map(int,sys.argv[1:])
print C/2*"    __"+"\n "+("__/  \\"*99)[:3*C-C%2]
r=0
exec'r+=3;print ("\__/  "*99)[r:r+3*C+1-r/6/R*~C%2];'*2*R
link|flag
Put the character count in the header part and it'll be better noticed. – strager Oct 8 at 22:14
Thanks, I've done it. – recursive Oct 8 at 22:22
Python doesn't automatically parse the command line arguments as a list? – Mark Canlas Oct 8 at 22:43
i assumed input was on stdin, not command line arguments. – recursive Oct 9 at 3:51
Show us your command line argument solution, too. – mobrule Oct 9 at 6:22
show 7 more comments
vote up 6 vote down

Perl, 160 characters

$w=shift;for$h(-1..2*shift){push@a,join'',(('\__','/  ')x($w+$h))[$h..$w+$h]}
$a[0]=~y#\\/# #;$a[1]=~s/./ /;s/_*$//for@a;$a[$w%2||$#a]=~s/. *$//;print$_,$/for@a

No cleverness involved at all: just fill the array with characters, then weed out the ones that look ugly.

strager's masterpiece is only 137 characters when ported to Perl, but all credit should go to him.

$w=shift;$\=$/;for$y(1..($h=2+2*shift)){print map+(split//,'_ \__/  ')
[$y-1?$y-2|$_?($_+$y%2*3)%6+2:1:$_%6<4],0..$w*3-!($w&1?$y-2:$y-$h)}
link|flag
Masterpiece? I'm flattered. =] – strager Oct 8 at 23:07
Amazingly, @mobrule's native Perl masterpiece is even shorter than strager's. – Chris Lutz Oct 9 at 6:45
@Lutz, That's because my "masterpiece" was designed to be used in C where string manipulation is much more difficult. – strager Oct 9 at 15:56
vote up 6 vote down

J, 143 characters

4(1!:2)~(10{a.)&,"1({.4 :0{:)".(1!:1)3
|:(18,(}:,32-+:@{:)3 3 8 1 1 10$~3*x){(,' '&(0})"1,' '&(0 1})"1)(,}."1)(}."1,}:"1)(3++:y)$"1'/\',:' _'
)

Using J feels very awkward when dealing with variable-length strings and the sort of console-oriented user interaction that is assumed in other languages. Still, I guess this is not too bad...

Stealing ideas once more (J is much easier to work with once you find a way of looking at the problem in an array-structured way), here's mobrule's masterpiece ported in 124 (ick, it's longer than the original):

4(1!:2)~({.4 :0{:)".(1!:1)3
(x}~' '_1}(x=.-1-+:2|x){])((10{a.),(' ',,99#'__/  \',:'    __'){~(i.>:3*x)+])"0]595 0,3 6$~+:y
)
link|flag
1  
Where did all the smilies went to?! – LiraNuna Oct 9 at 5:48
@Liran, I see a few: :0 {:) >:3 x}~ (}: |:( – strager Oct 9 at 22:04
Don't forget: (}. @{:) :2) – Instantsoup Oct 12 at 15:20
vote up 4 vote down

Ruby, 164

$ ruby -a -p bh.rb

strager's masterpiece in Ruby...

w,h = $F; w=w.to_i
(1..(h = h.to_i * 2 + 2)).each { |y|        
  (0...(w * 3 + (y != ((w & 1) != 0 ? 2 : h) ? 1:0))).each { |x|
    $> << ('_ \__/  ' [
      y - 1 != 0 ?
        (y - 2 | x) != 0 ?
          (x + y % 2 * 3) % 6 + 2 : 1 : (x % 6 < 4) ? 1:0]).chr
  }
  $> << $/
}

aka

w,h=$F;w=w.to_i
(1..(h=h.to_i*2+2)).each{|y|(0...(w*3+(y!=((w&1)!=0?2:h)?1:0))).each{|x|$><<('_ \__/  '[y-1!=0?(y-2|x)!=0?(x+y%2*3)%6+2:1:(x%6<4)?1:0]).chr}
$><<$/}
link|flag
vote up 4 vote down

C#, 216 characters

class B{static void Main(string[]a){int b=0,i=0,w=int.Parse(a[0])+1,z=2*w*(int.Parse(a[1])+1);for(;i<z;b=(i%w+i/w)%2)System.Console.Write("\\/ "[i>w&(w%2>0?i<z-1:i!=2*w-1)?b>0?0:1:2]+(++i%w<1?"\n":b>0?"__":"  "));}}

Less obfuscated:

class B{
    static void Main(string[]a){
       int b=0,
           i=0,
           w=int.Parse(a[0])+1,
           z=2*w*(int.Parse(a[1])+1);

       for(;i<z;b=(i%w+i/w)%2)
           System.Console.Write(
             "\\/ "[i>w&(w%2>0?i<z-1:i!=2*w-1)?b>0?0:1:2]
             +
             (++i%w<1?"\n":b>0?"__":"  ")
           );
    }
}

I used the following method:

input: 4 2
cols:  0 00 1 11 2 22 3 33 4 44 	
row 0:" |  | |__| |  | |__| |"
    1:" |__|/|  |\|__|/|  |\|"
    2:"/|  |\|__|/|  |\|__|/|"
    3:"\|__|/|  |\|__|/|  |\|"
    4:"/|  |\|__|/|  |\|__|/|"
    5:"\|__|/|  |\|__|/|  | |"
  1. Iterate from zero to (W+1)(H2+1). The *2 is because each comb is 2 lines tall, and +1 to account for the first line and end of lines.
  2. Render two "pieces" of a hexagon per iteration:
  3. Decide between " ", "\", and "/" for the first part
  4. Decide between "__", "  ", and "\n" for the second part

The pattern is evident if you look at a large enough honeycomb. Half the logic is there only to address exceptions in the first row, the end of the second row, and the last cell.

link|flag
1  
You can save some chars if you replace Int32.Parse with int.Parse. – Scoregraphic Oct 13 at 6:04
I made your suggested changes, and was able to pull out the "using System;" also! Down to 216 from 226. – Jeff Meatball Yang Oct 16 at 13:57
vote up 2 vote down

C89 - 261 necessary chars

All white spaces can be removed. My solution uses rotation of the board...

x,y,W,h,B[999],*a,*b,*c,*d;
main(w){
  for(scanf("%d%d",&h,&w);y<h;y++,*b++ = *c++ = 63)
    for(x=0,
        W=w*2+2-(h==1),
        a=B+y*W*3+y%2,
        b=a+W,
        c=b+W,
        d=c+W;x++<w;)

      *a++ = 60,
      *a++ = *d++ = 15,
      *b++ = *c++ = 63,
      *b++ = *c++ = 0,
      *d++ = 60;

  for(x=W;--x>=0;puts(""))
    for(y=0;y<h*3+1;putchar(B[x+y++*W]+32));
}
link|flag
vote up 2 vote down

C# 377 chars

Didn't want to disappoint anyone waiting for the "funny" C# answer. Unfortunately, it's not 250 lines though...;)


using System;
class P{
    static void Main(string[] a){
        int i,j,w=Int32.Parse(a[0]),h=Int32.Parse(a[1]);
        string n="\n",e="",o=e,l="__",s=" ",r=s+s,b=@"\",f="/";
        string[] t={r+r,l,b+l+f,r,l,f+r+b,e,f,b,s};
        for(i=0;i<w;)o+=t[i++%2];
        for(i=0;i<2*h;i++){
            o+=n+(i%2==0?i!=0?b:s:e);
            for(j=0;j<w;)
                o+=t[((j+++i)%2)+4];
            o+=i!=0?t[((w+i)%2)+6]:e;
        }
        o+=n;
        for(i=0;i<w;)o+=t[i++%2+2];
        Console.Write(o);
    }
}

link|flag
3  
Don't feel bad, C#-ers. You still dominate the entire rest of Stack Overflow. – Chris Lutz Oct 9 at 21:43
1  
@Lutz, Interesting how the syntax hilighter for SO doesn't understand @"" syntax. – strager Oct 9 at 22:02
lol at 'Don't feel bad.' Not trying to dominate either ... just thought it was a fun exercise ;). – markt Oct 9 at 23:24
vote up 2 vote down

NewLisp: 257 chars

I'm sure this is not an optimal solution:

(silent(define(i v)(println)(set v(int(read-line))))(i'w)(i'h)(set't(+(* 3 w)1))(set'l " __/ \\__/ ")(define(p s e(b 0))(println(slice(append(dup" "b)(dup(s 6 l)w))0 e)))(p 0 t)(p 4(- t(% w 2))1)(dotimes(n(- h 1))(p 6 t)(p 9 t))(p 6 t)(p 9(- t(%(+ w 1)2))))

Less obfuscated:

(silent
  (define (i v)
          (println)
          (set v (int (read-line))))
  (i 'w)
  (i 'h)
  (set 't (+ (* 3 w) 1))
  (set 'l "    __/  \\__/  ")
  (define (p s e (b 0))
          (println (slice (append (dup " " b) (dup (s 6 l) w)) 0 e)))
  (p 0 t)
  (p 4 (- t (% w 2)) 1)
  (dotimes (n (- h 1))
    (p 6 t)
    (p 9 t))
  (p 6 t)
  (p 9 (- t(% (+ w 1)2))))

I'm sure I could write the loop differently and save two lines and a few characters, for instance, but it's late...

link|flag
vote up 1 vote down

F#, 303 chars

let[|x;y|]=System.Console.ReadLine().Split([|' '|])
let p=printf
let L s o e=p"%s"s;(for i in 1..int x do p"%s"(if i%2=1 then o else e));p"\n"
if int x>1 then L" ""  "" __ ";L" ""__""/  \\"
else L" ""__"""
for i in 1..int y-1 do(L"/""  \\""__/";L"\\""__/""  \\")
L"/""  \\""__/"
L"""\\__/""  "

EDIT

Now that there are finally some other answers posted, I don't mind sharing a less-obfuscated version:

let [|sx;sy|] = System.Console.ReadLine().Split([|' '|])
let x,y = int sx, int sy

let Line n start odd even =
    printf "%s" start
    for i in 1..n do
        printf "%s" (if i%2=1 then odd else even)
    printfn ""

// header
if x > 1 then
    Line x " "   "  "   " __ "
    Line x " "   "__"   "/  \\"
else    
    Line x " "   "__"   "    "

// body
for i in 1..y-1 do
    Line x "/"    "  \\"   "__/"
    Line x "\\"   "__/"    "  \\"

// footer
Line x "/"   "  \\"    "__/"
Line x ""    "\\__/"   "  "
link|flag
I was wondering, are those double quotes really necessary in F#? If so, why? – LiraNuna Oct 8 at 21:01
1  
It's three different string literals passed as arguments, so "" is the end of one argument and the beginning of the next. – Brian Oct 8 at 21:02
vote up 1 vote down

Groovy, #375 chars

Same logic & code that @markt implemented in c#, but have changed few places for Groovy :)

public class FunCode {
        public static void main(a) {
        	int i,j,w=Integer.parseInt(a[0]),h=Integer.parseInt(a[1]);
            String n="\n",e="",o=e,l="__",s=" ",r=s+s,b="\\",f="/";
            def t=[r+r,l,b+l+f,r,l,f+r+b,e,f,b,s];
            for(i=0;i<w;)o+=t[i++%2];
            for(i=0;i<2*h;i++){
                o+=n+(i%2==0?i!=0?b:s:e);
                for(j=0;j<w;)
                    o+=t[((j+++i)%2)+4];
                o+=i!=0?t[((w+i)%2)+6]:e;
            }
            o+=n;
            for(i=0;i<w;)o+=t[i++%2+2]; println(o);
        }
    }
link|flag
vote up 1 vote down

Lua, 227 characters

w,h,s=io.read("*n"),io.read("*n")*2+2," " for i=1,h do b=(i%2>0 and "/  \\__" or "\\__/  "):rep(w/2+1):sub(1,w*3+1) print(i==1 and b:gsub("[/\\]",s) or i==2 and b:gsub("^\\",s):gsub("/$",s) or i==h and b:gsub("\\$",s) or b) end

208 characters, when width and height are read from command line.

s,w,h=" ",... h=h*2+2 for i=1,h do b=(i%2>0 and "/  \\__" or "\\__/  "):rep(w/2+1):sub(1,w*3+1) print(i==1 and b:gsub("[/\\]",s) or i==2 and b:gsub("^\\",s):gsub("/$",s) or i==h and b:gsub("\\$",s) or b) end
link|flag

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.