You have C-q as an alternative.megabreit wrote:Funny challenge... especially for Emacs and Windows users :-)
^V in the standard gvim Windows installation is mapped to <paste>, so the challenge is slightly harder for the "Followers of Bill"
Search found 8 matches
- Sat Aug 27, 2011 10:10 am
- Forum: Challenges Solved
- Topic: VIndicated
- Replies: 15
- Views: 1266
Re: VIndicated
- Sat Aug 27, 2011 10:06 am
- Forum: Challenges Solved
- Topic: How is your Grammar?
- Replies: 16
- Views: 1628
Simple solution: g = { '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', } a = 'S'; b = '' while a != b: a, b = ''.jo...
- Sat Aug 27, 2011 9:47 am
- Forum: Challenges Solved
- Topic: Frequent These Parts
- Replies: 7
- Views: 770
- Mon Aug 22, 2011 11:02 am
- Forum: Challenges Solved
- Topic: Deluge
- Replies: 3
- Views: 925
My solution: 005c! calls the recursive procedure at (0,0) 0^0:1^35*:*1- pushes non-zero iff 0 <= x <= 15 2^0:3^35*:*1- pushes non-zero iff 0 <= y <= 15 *35*? if one or both is zero, then it is out of bound 1^1^44**+0^ pushes a memory location for current position (twice) <4?d if it is empty then ski...
- Sun Aug 21, 2011 9:52 pm
- Forum: Challenges Solved
- Topic: Some Randoms
- Replies: 2
- Views: 358
Re: Some Randoms
A single "gnatmake testran.adb" should be enough.IIMOG wrote:I used GNAT (GPS). Compiling worked fine, but I had to do the gnatbind and gnatlink by hand.
- Sun Aug 21, 2011 6:51 pm
- Forum: Challenges Solved
- Topic: Substitute Teacher
- Replies: 28
- Views: 2633
- Sun Aug 21, 2011 12:37 pm
- Forum: Challenges Solved
- Topic: calculator
- Replies: 20
- Views: 1460
I took 2 hours to solve this challenge, due to the lack of assembler or other tools whatsoever. But I think the lack of assembler was actually a pro, not a con, as the code size dramatically changes depending on how the jump/call target is calculated. My code currently weighs 174 bytes (with six no-...
- Sat Aug 20, 2011 10:23 pm
- Forum: Challenges Solved
- Topic: Sum Some Primes
- Replies: 4
- Views: 973
Sum Some Primes
Thank you Wolfram|Alpha.
Input: sum of Prime[i] for i=49999951..50000000
Output: 49122557320
Of course the "correct" way to solve this problem is finding a fast enough primality testing routine for nine-digit numbers. Plain sieving wouldn't help, so I'd use SPRP-based testing maybe.
Input: sum of Prime[i] for i=49999951..50000000
Output: 49122557320
Of course the "correct" way to solve this problem is finding a fast enough primality testing routine for nine-digit numbers. Plain sieving wouldn't help, so I'd use SPRP-based testing maybe.