Hi, I am still very new to Nim and played around with the different solutions 
given here. To me, the biggest difference is made by changing the type of NE 
from seq to array: With this line: 
    
    
    const NE = @[8, 2, 13, 4, 5, 7, 8, 3, 9, 12, 7, 8, 3, 9, 12]
    

and 1_000_000 iterations it takes around 11 sec on my Linux box. With this line 
instead: 
    
    
    const NE = [8, 2, 13, 4, 5, 7, 8, 3, 9, 12, 7, 8, 3, 9, 12]
    

the time is reduced to ~ 1 sec.

Reply via email to