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,855 questions

51,776 answers

573 users

How to sort the digits of a number in descending order with Rust

1 Answer

0 votes
fn sort_digits_descending (num: u32) -> u32 {
    let mut digits: Vec<char> = num.to_string().chars().collect();
    
    digits.sort();
    digits.reverse();
    
    // Convert the sorted vector to a string
    let sorted_str: String = digits.into_iter().collect();
    
    // Convert the string to a number
    sorted_str.parse::<u32>().unwrap()
}

fn main() {
    let number = 28371;
    
    let sorted_digits  = sort_digits_descending (number);
    
    println!("Sorted digits: {}", sorted_digits); 
}


    
/*
run:
 
Sorted digits: 87321
 
*/

 



answered Aug 13, 2024 by avibootz

Related questions

1 answer 70 views
1 answer 120 views
1 answer 80 views
1 answer 87 views
1 answer 92 views
...