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.