merge stable version #2
|
@ -28,7 +28,6 @@ pub fn start_hamming_algorithm(input: &TextView, state: bool) -> Result<String>
|
||||||
pub fn check_correct_binary_code(input: &str, prepared_input: &str, l: usize) -> (bool, bool) {
|
pub fn check_correct_binary_code(input: &str, prepared_input: &str, l: usize) -> (bool, bool) {
|
||||||
let first_condition: bool = prepared_input.len() % l == 0;
|
let first_condition: bool = prepared_input.len() % l == 0;
|
||||||
|
|
||||||
let second_condition: bool = input.chars().all(|c| c == '1' || c == '0' || c == ' ');
|
|
||||||
|
|
||||||
(first_condition, second_condition)
|
(first_condition, second_condition)
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,3 +6,4 @@ use crate::{
|
||||||
};
|
};
|
||||||
use gtk::{prelude::*, *};
|
use gtk::{prelude::*, *};
|
||||||
|
|
||||||
|
let second_condition: bool = prepared_input.chars().all(|c| c == '1' || c == '0');
|
||||||
|
|
Loading…
Reference in New Issue