Skip to content

Commit

Permalink
disable p21, p23 pending debug
Browse files Browse the repository at this point in the history
  • Loading branch information
LivInTheLookingGlass committed Aug 24, 2024
1 parent 3bdd28d commit 3bc057e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ Olivia's Project Euler Solutions
| | GraalPy 23.1+ |br| | | |CodeQL| |br| |
| | Browser [#]_ | | |PythonLint| |
+------------+----------------------------+--------+-------------------+
| Rust | 1.69+ |br| | 30 | |Rust| |br| |
| Rust | 1.69+ |br| | 28 | |Rust| |br| |
| | Browser [#]_ | | |Rs-Cov| |br| |
| | | | |RustClippy| |
+------------+----------------------------+--------+-------------------+
Expand Down
4 changes: 2 additions & 2 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -116,11 +116,11 @@ Problems Solved
+-----------+------------+------------+------------+------------+------------+------------+------------+
|:prob:`20` |:c-d:`0020` |:cp-d:`0020`|:cs-d:`0020`|:ja-d:`0020`|:js-d:`0020`|:py-d:`0020`|:rs-d:`0020`|
+-----------+------------+------------+------------+------------+------------+------------+------------+
|:prob:`21` | | | | | |:py-d:`0021`|:rs-s:`0021`|
|:prob:`21` | | | | | |:py-d:`0021`|:rs-i:`0021`|
+-----------+------------+------------+------------+------------+------------+------------+------------+
|:prob:`22` |:c-d:`0022` |:cp-d:`0022`|:cs-d:`0022`|:ja-d:`0022`|:js-d:`0022`|:py-d:`0022`|:rs-d:`0022`|
+-----------+------------+------------+------------+------------+------------+------------+------------+
|:prob:`23` | | | | |:js-d:`0023`|:py-d:`0023`|:rs-s:`0023`|
|:prob:`23` | | | | |:js-d:`0023`|:py-d:`0023`|:rs-i:`0023`|
+-----------+------------+------------+------------+------------+------------+------------+------------+
|:prob:`24` | | | | | |:py-d:`0024`|:rs-d:`0024`|
+-----------+------------+------------+------------+------------+------------+------------+------------+
Expand Down
6 changes: 5 additions & 1 deletion rust/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,15 @@ fn main() {
}

#[cfg(test)]
seq!(N in 01..=24 {
seq!(N in 01..=20 {
#[rstest]
#(
#[case::problem_~N(N)]
)*
// #[case::problem_21(21)]
#[case::problem_22(22)]
// #[case::problem_23(23)]
#[case::problem_24(24)]
#[case::problem_27(27)]
#[case::problem_34(34)]
#[case::problem_69(69)]
Expand Down

0 comments on commit 3bc057e

Please sign in to comment.