merge stable version #2

Merged
doryan merged 97 commits from experimental into main 2024-08-28 18:54:00 +03:00
2 changed files with 1 additions and 1 deletions
Showing only changes of commit f78001167a - Show all commits

View File

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

View File

@ -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');