Search found 5 matches
- Tue Mar 20, 2012 2:22 am
- Forum: Challenges Solved
- Topic: Pi Hates Nines
- Replies: 26
- Views: 7683
- Wed Mar 14, 2012 3:22 am
- Forum: Challenges Solved
- Topic: Valuation
- Replies: 103
- Views: 23721
- Thu Feb 16, 2012 1:48 am
- Forum: Challenges Solved
- Topic: V.I.L.E.
- Replies: 12
- Views: 2649
- Tue Feb 14, 2012 7:59 am
- Forum: Challenges Solved
- Topic: Delegates
- Replies: 17
- Views: 6868
Mine in Ruby (which I learned today, be gentle) 

Code: Select all
x = 0
y = 1
while y < 2119 do
x = x + y
#machine to check if whole number
def whole?(x)
(x - x.floor) == 0
end
z = Math.sqrt(y)
if whole?(z) == true
x = x + y
end
y = y + 1
end
puts x
- Tue Feb 14, 2012 6:30 am
- Forum: Challenges Solved
- Topic: The Powers That Be
- Replies: 27
- Views: 6956
First thing I've written in 5 years, and first time ever using ruby. I could clean this up, but this is what I did to solve: y = ((17**39)**11) y = y.to_s z = 0 x = y[z].chr while x != nil do puts x z = z + 33 x = y[z].chr end Of course, it pops a new number out each line. I know how to clean it now...