Search found 16 matches
- Fri Mar 30, 2018 11:44 am
- Forum: Challenges Solved
- Topic: Type fastest
- Replies: 14
- Views: 2347
I manipulated the clipboard in endless loop too remove 'FOO'. After start of the groovy script I did copy and paste in browser. import java.awt.datatransfer.StringSelection import java.awt.Toolkit import java.awt.datatransfer.* String currentContent = '' while (currentContent != 'stop') { sleep(100)...
- Thu Mar 29, 2018 8:32 pm
- Forum: Challenges Solved
- Topic: A Repeat of Pi
- Replies: 21
- Views: 4791
- Mon Mar 26, 2018 8:54 pm
- Forum: Challenges
- Topic: bigger fib
- Replies: 27
- Views: 46131
- Fri Apr 18, 2014 4:13 pm
- Forum: Challenges Solved
- Topic: Lettered
- Replies: 8
- Views: 1855
browser solves it for me
after decoding the characters I put the result in a minimal html page.
Then the browser showed me the decoded html entities.
Code: Select all
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<p>℘ÕÙℜ©Θƒƒ∈∈</p>
</body>
</html>
- Thu Apr 10, 2014 10:01 pm
- Forum: Challenges Solved
- Topic: Substitute Teacher
- Replies: 28
- Views: 3571
this was a hard one
After several tries I startetd guessing character for character and build up a dictionary. To do this I wrote this little groovy script which showed me the ciphertext and under it the plaintext as far as conversion from dictonary was possible. All other characters where shown as '.' I started fillin...
- Thu Apr 10, 2014 4:26 pm
- Forum: Challenges Solved
- Topic: How is your Grammar?
- Replies: 16
- Views: 2799
groovy
def dic = [ 'A' : 'is', 'B' : 'mm', 'C' : 'oo', 'D' : 'rgr', 'E' : 'ryg', 'F' : 'dth', 'G' : 'you', 'H' : 'esol', 'I' : 'ionA', 'J' : 'GDaBarA', 'K' : 'veECFHutI', 'L' : 'PQ', 'M' : 'n', 'N' : 'm', 'O' : 'oaNcho', 'P' : 'MO', 'Q' : 'NR', 'R' : 'sky', 'S' : 'JKL'] def text = 'S' while(text.any{dic[i...
- Thu Apr 10, 2014 12:06 pm
- Forum: Challenges Solved
- Topic: The Lightest Touch
- Replies: 6
- Views: 3067
I got the hint in "the lightest touch" and found a translater at this website:
https://www.cbm.de/aktiv-werden/interak ... 11587.html
https://www.cbm.de/aktiv-werden/interak ... 11587.html
- Sun Apr 06, 2014 9:23 pm
- Forum: Challenges Solved
- Topic: ones and zeroes
- Replies: 3
- Views: 2593
- Sun Apr 06, 2014 3:26 pm
- Forum: Challenges Solved
- Topic: Ave
- Replies: 17
- Views: 2672
solved in groovy
I produced all 26 possibilities for the key of caesar encryption and looked for something readable. 'AVE' gave the hint for Caesar. def cipher = 'cqrb lryqna rb fjh, fjh qjamna cqjw axc cqracnnw. qnan, hxd wnena twxf qxf oja cx bqroc! xq kh cqn fjh, cqn jwbfna rb mnjmvjwblqnbc.' as byte[] def asciiB...
- Sat Apr 05, 2014 6:15 pm
- Forum: Challenges Solved
- Topic: Basic
- Replies: 12
- Views: 2663
- Wed Apr 02, 2014 8:08 pm
- Forum: Challenges Solved
- Topic: Growing Bacteria
- Replies: 24
- Views: 6866
I startet with a big solution containing a Bacteria class with age and 'liveOneDay' method, which seem to calculate correct numbers. But it also seemed to be running forever. So I startet again with this little groovy script. The generations list contains the bacteria generations with 1,2,3 and 4 da...
- Tue Apr 01, 2014 8:47 pm
- Forum: Challenges Solved
- Topic: Rabbits everywhere
- Replies: 7
- Views: 1351
- Tue Apr 01, 2014 7:49 pm
- Forum: Challenges Solved
- Topic: A Little Python
- Replies: 6
- Views: 1177
reading it from the back
I read it straightbackward
my solution in groovy:
and I also learned, that pythons xrange area is exlusive upper bound.
my solution in groovy:
Code: Select all
def yRange = []
def sum = 0
(3..<11).each{y -> yRange+= y*y}
yRange.each {x -> sum+= x*(x-1)}
println sum
- Mon Mar 31, 2014 8:52 pm
- Forum: Challenges Solved
- Topic: A Piece of Pi
- Replies: 7
- Views: 1207
- Sun Mar 23, 2014 11:22 am
- Forum: Challenges Solved
- Topic: Didactic Feedback Cipher 2
- Replies: 0
- Views: 3741
Didactic Feedback Cipher 2
I solved it in groovy. For the key k, it seems, that there is no way to calculate it and so the 1st plaintext byte (plain[0]) can just be guessed. Of course in this case, the first plain byte was not needed and guessing it after resolving was easy. def cipherString = '310a7718781f73...' def cipher =...