Skip to content

[BUG] Problem - 10 testcases not correct #14

Description

@Rohan-Singla

Bug Description

A clear and concise description of what the bug is.

To Reproduce

Steps to reproduce the behavior:

  1. Go to problem-10 count even numbers
  2. Solve the problem
  3. Run the code
  4. 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

Image

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}")
    

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugSomething isn't working

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions