Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
s='ThE qUiCk BrOwN fOx JuMpEd OvEr ThE lAzY dOg';
se = 'YjR wIoVl NtPeM gPc Ki<[Rf PbRt YjR ;SxU fPh';
assert(isequal(Qwerty_encode(s),se))
decoded_str =
'YjR wIoVl NtPeM gPc Ki<[Rf PbRt YjR ;SxU fPh'
|
2 | Pass |
s='abcdefghijklmnopqrstuvwxyz';
se='snvfrghjokl;,mp[wtdyibecux'; % a-z
assert(isequal(Qwerty_encode(s),se))
decoded_str =
'snvfrghjokl;,mp[wtdyibecux'
|
3 | Pass |
s='ABCDEFGHIJKLMNOPQRSTUVWXYZ';
se='SNVFRGHJOKL:<MP{WTDYIBECUX'; % A-Z
assert(isequal(Qwerty_encode(s),se))
decoded_str =
'SNVFRGHJOKL:<MP{WTDYIBECUX'
|
4 | Pass |
s='You miss 100 percent of the shots you never take. Gretzky';
se='Upi ,odd 100 [rtvrmy pg yjr djpyd upi mrbrt yslr. Htryxlu';
assert(isequal(Qwerty_encode(s),se))
decoded_str =
'Upi ,odd 100 [rtvrmy pg yjr djpyd upi mrbrt yslr. Htryxlu'
|
5 | Pass |
s='Those who believe in telekinetics raise my hand. Vonnegut';
se='Yjpdr ejp nr;orbr om yr;rlomryovd tsodr ,u jsmf. Bpmmrhiy';
assert(isequal(Qwerty_encode(s),se))
decoded_str =
'Yjpdr ejp nr;orbr om yr;rlomryovd tsodr ,u jsmf. Bpmmrhiy'
|
Given an unsigned integer x, find the largest y by rearranging the bits in x
780 Solvers
Project Euler: Problem 1, Multiples of 3 and 5
1491 Solvers
220 Solvers
Sum of diagonal of a square matrix
1327 Solvers
694 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!