Linear congruential generator
http://en.wikipedia.org/wiki/Linear_congruential_generator
Start file
a = 25 b = 7 m = 48 x0 = 0 x1 = (a * x0 + b) % m x2 = (a * x1 + b) % m ... | v
End file
a = 25 b = 7 m = 48 x0 = 0 x1 = (a * x0 + b) % m x2 = (a * x1 + b) % m ... | v 0 7 38 45 28 35 18 25 8 15 46 5 36 43 26 33 16 23 6 13 44 3 34 41 24 31 14 21 4 11 42 1 32 39 22 29 12 19 2 9 40 47 30 37 20 27 10 17 0
View Diff
11a12,60 > 0 > 7 > 38 > 45 > 28 > 35 > 18 > 25 > 8 > 15 > 46 > 5 > 36 > 43 > 26 > 33 > 16 > 23 > 6 > 13 > 44 > 3 > 34 > 41 > 24 > 31 > 14 > 21 > 4 > 11 > 42 > 1 > 32 > 39 > 22 > 29 > 12 > 19 > 2 > 9 > 40 > 47 > 30 > 37 > 20 > 27 > 10 > 17 > 0
Solutions
The best way to learn is to practice. Below, you will find some of the solutions other golfers have entered. To unlock higher ranked solutions, submit your own entry which does as well or better than the solutions you can currently see - climb the ladder!
Check out these helpful resources to improve your Vim skills... Game on.
Unlock 50 remaining solutions by signing in and submitting your own entry
#51 Austin Taylor / @austintaylor - Score: 140 - 12/29/10 @ 21:13
Go0<CR>7<CR>38<CR>45<CR>28<CR>35<CR>18<CR>25<CR>8<CR>15<CR>46<CR>5<CR>36<CR>43<CR>26<CR>33<CR>16<CR>23<CR>6<CR>13<CR>44<CR>3<CR>34<CR>41<CR>24<CR>31<CR>14<CR>21<CR>4<CR>11<CR>42<CR>1<CR>32<CR>39<CR>22<CR>29<CR>12<CR>19<CR>2<CR>9<CR>40<CR>47<CR>30<CR>37<CR>20<CR>27<CR>10<CR>17<CR>0<Esc>ZZ
0 comments
#52 Indrek Juhkam / @indrekj - Score: 140 - 12/29/10 @ 21:26
Go0<CR>7<CR>38<CR>45<CR>28<CR>35<CR>18<CR>25<CR>8<CR>15<CR>46<CR>5<CR>36<CR>43<CR>26<CR>33<CR>16<CR>23<CR>6<CR>13<CR>44<CR>3<CR>34<CR>41<CR>24<CR>31<CR>14<CR>21<CR>4<CR>11<CR>42<CR>1<CR>32<CR>39<CR>22<CR>29<CR>12<CR>19<CR>2<CR>9<CR>40<CR>47<CR>30<CR>37<CR>20<CR>27<CR>10<CR>17<CR>0<Esc>ZZ
0 comments