@@ -9,30 +9,30 @@ All implementations use same bases types (string)
9
9
```
10
10
11
11
sudoku.go : algo with strings
12
- - go : 16.670 seconds (116x , 16.564><17.145)
12
+ - go : 16.672 seconds (117x , 16.564><17.145)
13
13
14
14
sudoku.java : algo with strings
15
- - java : 27.153 seconds (16x , 26.862 ><29.938)
15
+ - java : 27.115 seconds (17x , 26.809 ><29.938)
16
16
17
17
sudoku.js : algo with strings
18
- - node : 30.360 seconds (9x , 30.215 ><31.564)
18
+ - node : 30.350 seconds (10x , 30.120 ><31.564)
19
19
20
20
sudoku.mojo : algo with strings (use python to read stdin)
21
21
- mojo : 80.739 seconds (210x, 78.375><86.289)
22
22
23
23
sudoku.nim : algo with strings
24
- - nim : 23.352 seconds (17x , 22.930><23.891)
24
+ - nim : 23.354 seconds (18x , 22.930><23.891)
25
25
26
26
sudoku.php : algo with strings
27
- - php : 83.691 seconds (26x , 82.348><85.165)
27
+ - php : 83.691 seconds (27x , 82.348><85.165)
28
28
29
29
sudoku.py : algo with strings
30
- - codon : 13.225 seconds (51x , 12.891><13.839)
31
- - py3 : 88.646 seconds (116x , 86.923><93.035)
32
- - pypy : 19.057 seconds (348x , 17.905><36.082)
30
+ - codon : 13.225 seconds (52x , 12.891><13.839)
31
+ - py3 : 88.645 seconds (117x , 86.923><93.035)
32
+ - pypy : 19.057 seconds (349x , 17.905><36.082)
33
33
34
34
sudoku.rs : algo with Strings (as byte[])
35
- - rust : 8.185 seconds (32x , 7.971><8.346)
35
+ - rust : 8.186 seconds (33x , 7.971><8.346)
36
36
37
37
```
38
38
@@ -43,15 +43,15 @@ It's the same algorithm, but use specialized weapons (types/apis) from the langu
43
43
```
44
44
45
45
specialized/sudoku.rs : algo with specialized types
46
- - rust : 0.643 seconds (32x , 0.615><0.651)
46
+ - rust : 0.642 seconds (33x , 0.615><0.651)
47
47
48
48
```
49
49
## Context
50
50
51
51
Here are informations about the host/computer, and languages/versions/cmdline used for tests:
52
52
```
53
53
PLATFORM : x86_64/Linux-6.11.0-1013-azure-x86_64-with-glibc2.39 with 4 cpus
54
- CPUINFO : AuthenticAMD "AMD EPYC 7763 64-Core Processor" (4890.86 bogomips)
54
+ CPUINFO : AuthenticAMD "AMD EPYC 7763 64-Core Processor" (4890.87 bogomips)
55
55
MEMINFO : 16373452 kB
56
56
57
57
codon : 0.18.2
0 commit comments