Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,20 @@
|
|||
function r = collapse(s)
|
||||
ix=find((s(1:end-1)==s(2:end))+1;
|
||||
r=s;
|
||||
r(ix)=[];
|
||||
|
||||
fprintf(1,'Input: <<<%s>>> length: %d\n',s,length(s));
|
||||
fprintf(1,'Output: <<<%s>>> length: %d\n',r,length(r));
|
||||
fprintf(1,'Character to be squeezed: "%s"\n',c);
|
||||
|
||||
end
|
||||
|
||||
|
||||
collapse('', ' ')
|
||||
collapse('║╚═══════════════════════════════════════════════════════════════════════╗', '-')
|
||||
collapse('║"If I were two-faced, would I be wearing this one?" --- Abraham Lincoln ║', '7')
|
||||
collapse('║..1111111111111111111111111111111111111111111111111111111111111117777888║', '.')
|
||||
collapse('║I never give ''em hell, I just tell the truth, and they think it''s hell. ║', '.')
|
||||
collapse('║ --- Harry S Truman ║', '.')
|
||||
collapse('║ --- Harry S Truman ║', '-')
|
||||
collapse('║ --- Harry S Truman ║', 'r')
|
||||
Loading…
Add table
Add a link
Reference in a new issue