Skip to content

yuhkaraooo/PublicSignalGroupLinks

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 

Repository files navigation

Public Signal Group Links

Computer Science


Python Programming
The link is the output of the following code:

chars = ['z', '4', 'F', 'w', 'd', '0', 'K', 'b', 'Y', '6', '_', 'Q', 'I', 'A', '9', '8', 'b', 'Y', 'q', '3', '1', 'B',
         'h', 'E', 'P', 'N', '7', 'b', '8', '8', '9', '2', 'L', 'B', 'T', 'X', 'M', 'Y', 'd', 'K', 'y', 't', 'D', 'E',
         'P', 'c', '3', 'M', 't', 'l', 'm', 'z', 'N', 'I', 'v', 'i', '9', 'i', 'L', 'E', 'B', 'D', 'G', 'e', '-', 'Z',
         'N', 'I', 'K', 'Q', 'j', 'C', '#', '/', 'p', 'u', 'o', 'r', 'g', '.', 'l', 'a', 'n', 'g', 'i', 's', '/', '/',
         ':', 's', 'p', 't', 't', 'h']
chars.reverse()
links = ''.join(chars)
print(links)

Rust Programming
The link is the output of the following code:

fn main() {
    let mut chars = [
        'h', '2', 'z', 'i', '5', '1', 'S', 'E', 'v', 'E', 'W', 'Z', '6', 'd', 'W', '6', 'K', 'p',
        '0', 'X', 'A', 'B', 'h', 'E', 'G', 'o', 'w', 'W', 'F', 'o', 'U', 'I', 'C', 'b', 'o', 'N',
        'j', 'I', 'x', 'd', '1', 'V', 'x', 'F', 'K', 'w', 'p', 'w', 'V', 'N', 'I', 't', 'A', 'c',
        '6', 'o', 'T', 'W', 'F', '0', '_', 'D', 'C', 'i', 'p', 'L', 'A', 'I', 'K', 'Q', 'j', 'C',
        '#', '/', 'p', 'u', 'o', 'r', 'g', '.', 'l', 'a', 'n', 'g', 'i', 's', '/', '/', ':', 's',
        'p', 't', 't', 'h',
    ];
    chars.reverse();
    println!("{}", chars.iter().collect::<String>());
}