What is Nostr?
dave /
npub1tsg…htk4
2023-02-10 07:44:06
in reply to nevent1q…5u8v

dave on Nostr: fn common_char(str1: &str, str2: &str) -> Vec<char> { let mut common_chars = vec![]; ...

fn common_char(str1: &str, str2: &str) -> Vec<char> {
let mut common_chars = vec![];
for ch1 in str1.chars() {
if str2.contains(ch1) {
common_chars.push(ch1);
}
}
common_chars
}
Author Public Key
npub1tsgw6pncspg4d5u778hk63s3pls70evs4czfsmx0fzap9xwt203qtkhtk4