Условие У тебя есть Vec<String>, в котором находятся строки от "1" до "100", но одно число отсутствует. Найди его без использования sort, HashMap, iter().sum() и т. д. Можно использовать parse::<u32>().
Формат функции:
fn find_missing_number(data: &Vec<String>) -> u32
Решение через XOR:
fn find_missing_number(data: &Vec<String>) -> u32 { let mut xor_full = 0; let mut xor_data = 0;
for i in 1..=100 { xor_full ^= i; }
for s in data { if let Ok(n) = s.parse::<u32>() { xor_data ^= n; } }
xor_full ^ xor_data }
Пример использования:
fn main() { let mut data: Vec<String> = (1..=100) .filter(|&x| x != 42) .map(|x| x.to_string()) .collect();
use rand::seq::SliceRandom; let mut rng = rand::thread_rng(); data.shuffle(&mut rng);
Условие У тебя есть Vec<String>, в котором находятся строки от "1" до "100", но одно число отсутствует. Найди его без использования sort, HashMap, iter().sum() и т. д. Можно использовать parse::<u32>().
Формат функции:
fn find_missing_number(data: &Vec<String>) -> u32
Решение через XOR:
fn find_missing_number(data: &Vec<String>) -> u32 { let mut xor_full = 0; let mut xor_data = 0;
for i in 1..=100 { xor_full ^= i; }
for s in data { if let Ok(n) = s.parse::<u32>() { xor_data ^= n; } }
xor_full ^ xor_data }
Пример использования:
fn main() { let mut data: Vec<String> = (1..=100) .filter(|&x| x != 42) .map(|x| x.to_string()) .collect();
use rand::seq::SliceRandom; let mut rng = rand::thread_rng(); data.shuffle(&mut rng);
Bitcoin is built on a distributed digital record called a blockchain. As the name implies, blockchain is a linked body of data, made up of units called blocks that contain information about each and every transaction, including date and time, total value, buyer and seller, and a unique identifying code for each exchange. Entries are strung together in chronological order, creating a digital chain of blocks. “Once a block is added to the blockchain, it becomes accessible to anyone who wishes to view it, acting as a public ledger of cryptocurrency transactions,” says Stacey Harris, consultant for Pelicoin, a network of cryptocurrency ATMs. Blockchain is decentralized, which means it’s not controlled by any one organization. “It’s like a Google Doc that anyone can work on,” says Buchi Okoro, CEO and co-founder of African cryptocurrency exchange Quidax. “Nobody owns it, but anyone who has a link can contribute to it. And as different people update it, your copy also gets updated.”
Telegram has exploded as a hub for cybercriminals looking to buy, sell and share stolen data and hacking tools, new research shows, as the messaging app emerges as an alternative to the dark web.An investigation by cyber intelligence group Cyberint, together with the Financial Times, found a ballooning network of hackers sharing data leaks on the popular messaging platform, sometimes in channels with tens of thousands of subscribers, lured by its ease of use and light-touch moderation.Rust from fr