Search found 5 matches

by the_austria
Wed Feb 06, 2013 9:20 pm
Forum: Challenges Solved
Topic: Basic
Replies: 12
Views: 1102

I wrote an own function in python (for fun)

Code: Select all

def base(number,base):
  newnumber=[]
  while number>0:
    newnumber.insert(0,number%base)
    number=number//base
  return newnumber
It returns a list of the digets.
by the_austria
Sun Apr 22, 2012 1:04 pm
Forum: Challenges Solved
Topic: Don't Blink
Replies: 22
Views: 1984

I solved it with Firebug :D
by the_austria
Tue Mar 13, 2012 8:01 pm
Forum: Challenges Solved
Topic: Lower Count
Replies: 20
Views: 1579

I did it in JS with RegExp var str="mQmPtphqGrboHhmgaqVhCdwTwignlQvjIopDqVpgaNrwkAzVcnkHyNiPdSmgJ mgrPiMjpnjdbuPucHnouwfKuPcybromnmbvfxJqRnnOvWsceZeYzRyqnkaaFsffjenxoIhqH nIzorlOdwZoxYmAuNwNnRppguwidvbtOqdbUngpZdbGqwYjfpLzPjRtwVwEqBbYmCqbKw uziCoEwPsIkJgruTbhdyWpvPztAodufjZxLaZcUeFaklSmeRfolohV...
by the_austria
Tue Mar 13, 2012 7:29 pm
Forum: Challenges Solved
Topic: The Powers That Be
Replies: 27
Views: 3096

I calculate all digits with wolframalpha.com and copy it in this JS code: var str="7287646047175693809181003658560624690001934249475037583383410966869968575 4467436227234724042627102964298841820516037233528475978459785414759364887185809727 4405592779889038847476635050174799866232012301434410796...
by the_austria
Tue Mar 13, 2012 6:46 pm
Forum: Challenges Solved
Topic: Never Submit
Replies: 15
Views: 1904

When I saw the source code I thought: " Use Firebug"