This repository has been archived on 2025-03-27. You can view files and clone it, but cannot push or open issues or pull requests.
|
use gtk4 as gtk;
|
|
|
|
use crate::{
|
|
model::{models::*, Result},
|
|
model_utils::hamming_code_seven_four::*,
|
|
};
|
|
use gtk::{prelude::*, *};
|
|
|
|
let second_condition: bool = prepared_input.chars().all(|c| c == '1' || c == '0');
|