Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,971 questions

51,913 answers

573 users

How to check if two equal-length strings are at least 50% equal in Rust

1 Answer

0 votes
fn at_least_half_equal(s1: &str, s2: &str) -> bool {
    // Check equal length and non-empty
    if s1.len() == 0 || s1.len() != s2.len() {
        return false;
    }

    let mut matches = 0;

    // Compare byte-by-byte (Pascal strings are byte-indexed too)
    for i in 0..s1.len() {
        if s1.as_bytes()[i] == s2.as_bytes()[i] {
            matches += 1;
        }
    }

    // matches / len >= 0.5  →  2 * matches >= len
    matches * 2 >= s1.len()
}

fn main() {
    println!("{}", at_least_half_equal("abcde", "axcfz")); 
    println!(
        "{}",
        at_least_half_equal(
            "javascript c# c++ c python",
            "javascript c# r c rust sql"
        )
    ); 
}



/*
run:

false
true

*/

 



answered Dec 21, 2025 by avibootz

Related questions

...