Skip to content

Commit

Permalink
Skip p12 in c (slow), update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
LivInTheLookingGlass committed Aug 21, 2024
1 parent 91c0f8a commit b1f4f43
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -124,8 +124,10 @@ Olivia's Project Euler Solutions
.. [1] This is the earliest standard the MSVC explicitly supports.
.. [2] While these solutions do run in most browsers, they need to be bundled with Emscripten first,
and these tests not yet automated as in |clang| and |gcc|. To run these tests yourself, |test-c-link|
Note that there are a few problems that return the wrong answer only in WebAssembly, and need to be debugged
.. [3] While these solutions do run in most browsers, they need to be bundled with Emscripten first,
and these tests not yet automated as in |clang| and |gcc|. To run these tests yourself, |test-cp-link|
Note that there are a few problems that return the wrong answer only in WebAssembly, and need to be debugged
.. .. [#] (This target is not yet complete.) While these solutions do run in most browsers, they need to be bundled with DotNetAnywhere first,
.. and these tests not yet automated as in mainline .NET. To run these tests yourself, |test-cs-link|
.. .. [#] (This target is not yet complete.) While these solutions do run in most browsers, they need to be bundled with CheerpJ first,
Expand Down
1 change: 1 addition & 0 deletions docs/_static/test-c.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
Module().then(async (wasm) => {
await init();
for (let p = 1; p < 10000; p++) {
if ([12, ].includes(p)) continue;
const formattedQuestion = `${p}`.padStart(4, '0');
const func = wasm[`_p${formattedQuestion}`];
if (func === undefined) continue;
Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ Problems Solved
+-----------+------------+------------+------------+------------+------------+------------+------------+
| Testing | |d| | |d| | |d| | |d| | |d| | |d| | |d| |
+-----------+------------+------------+------------+------------+------------+------------+------------+
| Browser | | | | | |d| | |d| | |d| |
| Browser | |d| | |d| | | | |d| | |d| | |d| |
+-----------+------------+------------+------------+------------+------------+------------+------------+
+-----------+------------+------------+------------+------------+------------+------------+------------+
|:prob:`1` |:c-d:`0001` |:cp-d:`0001`|:cs-d:`0001`|:ja-d:`0001`|:js-d:`0001`|:py-d:`0001`|:rs-d:`0001`|
Expand Down

0 comments on commit b1f4f43

Please sign in to comment.