mirror of
				https://github.com/ruby/ruby.git
				synced 2022-11-09 12:17:21 -05:00 
			
		
		
		
	 3557a5f85e
			
		
	
	
		3557a5f85e
		
	
	
	
	
		
			
			be self-contained and avoid dependencies, especially such small one. See https://github.com/ruby/ruby/pull/393#issuecomment-24861301. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43012 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
		
			
				
	
	
		
			15 lines
		
	
	
	
		
			310 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			310 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| def ack(m, n)
 | |
|   if m == 0 then
 | |
|     n + 1
 | |
|   elsif n == 0 then
 | |
|     ack(m - 1, 1)
 | |
|   else
 | |
|     ack(m - 1, ack(m, n - 1))
 | |
|   end
 | |
| end
 | |
| 
 | |
| def the_answer_to_life_the_universe_and_everything
 | |
|   (ack(3,7).to_s.split(//).inject(0){|s,x| s+x.to_i}.to_s + "2" ).to_i
 | |
| end
 | |
| 
 | |
| answer = the_answer_to_life_the_universe_and_everything
 |