Bug Description
A clear and concise description of what the bug is.
To Reproduce
Steps to reproduce the behavior:
- Go to problem-10 count even numbers
- Solve the problem
- Run the code
- Doesn't update the status
Expected Behavior
Like others the correct solution should be marked as completed but doesn't
Actual Behavior
Doesn't update the status even with correct solution
Screenshots
Environment
- OS: [e.g. macOS]
- Browser: [Chrome]
Additional Context
Tried with 1..10 also in loop didn't pass either
Code Snippets
If applicable, add relevant code snippets to help reproduce the issue.
let mut even_counter = 0 ;
for a in 1..=10{
if a %2==0{
even_counter += 1;
}
}
println!("{even_counter}")
Bug Description
A clear and concise description of what the bug is.
To Reproduce
Steps to reproduce the behavior:
Expected Behavior
Like others the correct solution should be marked as completed but doesn't
Actual Behavior
Doesn't update the status even with correct solution
Screenshots
Environment
Additional Context
Tried with 1..10 also in loop didn't pass either
Code Snippets
If applicable, add relevant code snippets to help reproduce the issue.