simple cipher
- To: mathgroup at smc.vnet.net
- Subject: [mg55364] simple cipher
- From: zak <chocolatez at gmail.com>
- Date: Sun, 20 Mar 2005 04:11:56 -0500 (EST)
- Reply-to: zak <chocolatez at gmail.com>
- Sender: owner-wri-mathgroup at wolfram.com
s1 = {1, 0, 1, 0, 0, 1, 0, 1} s2 = {L, r, o, w, e, v, y, e} s1 is a kind of a sieve i want to look through to s2, so i could pick every letter in s2 wich correspond to every digit=1 in s1 so i could obtain the word "love", this is like the trivial ciphers we know in our childhood, i have the following approach, i hope there is other versions. p = Flatten[Position[s1, 1]] out[]= {1, 3, 6, 8} str = ""; Do[str = StringJoin[str, ToString[s2[[p[[i]]]]]], {i, 1, 4}] str Out[]= Love thanks zak
- Follow-Ups:
- Re: simple cipher
- From: yehuda ben-shimol <bsyehuda@gmail.com>
- Re: Simple cipher
- From: Hui Fang <fangh73@xmu.edu.cn>
- Re: simple cipher
- From: DrBob <drbob@bigfoot.com>
- Re: simple cipher
- From: Andrzej Kozlowski <akoz@mimuw.edu.pl>
- Re: simple cipher