Re: [Jprogramming] Control Words

2018-06-28 Thread Devon McCormick
One problem w/adding the random discrepancy back into a set is that you will go out of the 1-72 band - then you have to handle that piddling difference. At some point, it's faster to grab the low-hanging fruit and be on your way. Whether or not any of this matters depends mainly on the exact prob

Re: [Jprogramming] wiki maintenance

2018-06-28 Thread chris burke
The problem was relative links, e.g. ../name, and this is fixed now. On Thu, Jun 28, 2018 at 4:38 PM, Roger Hui wrote: > There are many visible changes in the Brave New Wiki, namely: In the old > Wiki, internal wiki links are stated as [[wiki page title]] in the raw > text. Now those links are

Re: [Jprogramming] I found shortest sentence for Fibonacci numbers

2018-06-28 Thread 'Pascal Jasmin' via Programming
tacit version, not shorter I guess, fib2 =: {.@((( {: ,+/)@:]^:[)&0 1x) fib2 6 8 On Thursday, June 28, 2018, 7:42:18 p.m. EDT, Roger Hui wrote: Shorter expressions are known to exist.  See https://code.jsoftware.com/wiki/Essays/Fibonacci_Sequence . On Thu, Jun 28, 2018 at 4:

Re: [Jprogramming] I found shortest sentence for Fibonacci numbers

2018-06-28 Thread Roger Hui
Shorter expressions are known to exist. See https://code.jsoftware.com/wiki/Essays/Fibonacci_Sequence . On Thu, Jun 28, 2018 at 4:17 PM, Sergey Kamenev wrote: > Hi, folks! > > fib =: 3 : '{."1 (+/ , {.)^:y 0 1x' > > fib 0 > 0 > > fib 5 > 5 > > fib i.10 > 0 1 1 2 3 5 8 13 21 34 > > fib i. 3

Re: [Jprogramming] wiki maintenance

2018-06-28 Thread Roger Hui
There are many visible changes in the Brave New Wiki, namely: In the old Wiki, internal wiki links are stated as [[wiki page title]] in the raw text. Now those links are also displayed as [[wiki page title]] with the square brackets. It'd be a drag (i.e. not ideal, for those unfamiliar with 1960

[Jprogramming] I found shortest sentence for Fibonacci numbers

2018-06-28 Thread Sergey Kamenev
Hi, folks! fib =: 3 : '{."1 (+/ , {.)^:y 0 1x' fib 0 0 fib 5 5 fib i.10 0 1 1 2 3 5 8 13 21 34  fib i. 3 4   0   1   1   2   3   5   8 13 21 34 55 89 This works without recursion. Please insert this into Essays https://code.jsoftware.com/wiki/Essays/Fibonacci_Index https://code.jsoftware.co