I've tried and tried and tried, but I still have the feeling that this is bloated, and probably taking up too much disk space! I'm sorry for wasting your bandwidth with it too:

class String;def i x,y;self[y%split.size*(q+1)+x%q];end;def q;split[0].size;end;def c;n="";split.size.times{|y|q.times{|x|n+=((i(x,y)==?X?2:3)..3)===((x-1..x+1).map{|z|(y-1..y+1).map{|w|[z,w]}}.inject(:+)-[[x,y]]).map{|x,y|i(x,y)==?X?1:0}.inject(:+)??X:?.};n+=?\n};n.strip end end

I have a feeling there are further efficiencies of space, but for now, 280 is all I can do.

Does anyone see any ways to further condense this? It's Ruby 1.9-only due to using ?X (etc.) as String, possibly also for the use of inject(:+).

Can anyone get this lower than 280 bytes?

Edit: Improvements included from Andrew Grimm and Ryanmt.

link|improve this question

3  
Disk space? Seriously... it's 294 bytes. – Greg Sansom Jun 8 '11 at 4:51
2  
@Greg Tongue must not be firmly enough in my cheek .. ;-) – Len Jun 8 '11 at 4:58
3  
y dont u edit the code in different lines so that it will be more readable? – rubyprince Jun 8 '11 at 6:09
OK... so what's the point? I have a feeling the time you've lost thinking about this is worth more than any 'efficiencies' which might be gained :) – Greg Sansom Jun 8 '11 at 10:33
Vote to close: off topic, belongs on Code Golf. – sixlettervariables Jun 8 '11 at 13:25
feedback

3 Answers

up vote 6 down vote accepted

216 bytes, same algorithm:

class String;def c;s=split;y=-1;s.map{|r|y+=-x=-1;r.chars.map{|c|((c>?.?2:3)..3)===((x..1+x+=1).inject([]){|a,z|[z,z,z].zip(y-1..y+1)+a}-[[x,y]]).map{|e,f|s[f%s.size][e%r.size]>?.?1:0}.inject(:+)??X:?.}*''}*$/end end

What did I do?

  • Inline helper methods
  • Remove String#i (directly get values from split array)
  • Use map instead of manually iterating; remove n
  • Use inject directly instead of map.inject
  • Use $/ instead of ?\n
  • Don't compare with == but with >
  • More little tweaks

:)

link|improve this answer
Sir!! I bow down to you :) That is amazing! Thanks very much for enumerating the bag of tricks used to get there -- I well remember these for future rounds of golf. – Len Jun 10 '11 at 4:53
feedback

Replace 0.upto(q-1) with q.times.

link|improve this answer
Awesome! I didn't realise upto had that behaviour. This also applies to split.size.times. – Len Jun 8 '11 at 4:59
feedback

split.length could be replaced with split.size. I don't really know why you want to shorten it.. but yeah, that saves 2 bytes, 3 times.

link|improve this answer
Good pick! Thank you! – Len Jun 8 '11 at 4:59
feedback

Your Answer

 
or
required, but never shown

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