mirror of
https://gitlab.com/mfocko/LeetCode.git
synced 2024-11-09 15:59:06 +01:00
21 lines
584 B
Rust
21 lines
584 B
Rust
use std::cmp;
|
|
|
|
impl Solution {
|
|
pub fn maximum_odd_binary_number(s: String) -> String {
|
|
let mut bits: Vec<char> = s.chars().collect();
|
|
|
|
// sort in reverse order, all ones are at the beginning
|
|
bits.sort_unstable_by_key(|&x| cmp::Reverse(x));
|
|
|
|
// find the last one
|
|
let i = bits.iter().rposition(|&x| x == '1').unwrap();
|
|
|
|
// and swap with the last zero to obtain odd integer
|
|
let last_index = bits.len() - 1;
|
|
if i < last_index {
|
|
bits.swap(i, last_index);
|
|
}
|
|
|
|
bits.into_iter().collect()
|
|
}
|
|
}
|