Puzzler for a Monday

Given a cell array of strings
A = {'MATLAB','HURRAY','SPARKLY','KITTENS','FUN'};
and a particular string value
B = 'KITTENS';
ensure that B is the last element of the cell array. If it isn't, move it to the end of A.
You cannot assume that B appears at all (in which case return A unchanged), but you can assume B does not appear more than once.
[I have a solution, but I post this as a puzzle because I bet someone can find a slicker one.]

Respuestas (6)

Azzi Abdelmalek
Azzi Abdelmalek el 22 de Jul. de 2013

2 votos

idx=strcmp(A,B)
out=[A(~idx) A(idx)]
the cyclist
the cyclist el 22 de Jul. de 2013

2 votos

Here's mine:
[~,idx] = sort(ismember(A,B));
A = A(idx)
Sean de Wolski
Sean de Wolski el 22 de Jul. de 2013

1 voto

idx = ismember(A,B);
C = cat(isrow(A)+1,A(~idx),A(idx))

1 comentario

Evan
Evan el 22 de Jul. de 2013
Awesome. I especially like the "isrow" trick. I'll be remembering that one.

Iniciar sesión para comentar.

Evan
Evan el 22 de Jul. de 2013
Editada: Evan el 22 de Jul. de 2013

0 votos

Here's my solution. It's ugly, but I think it's fairly general. :P
function A = cell_shuffle(A)
idx = cellfun(@(x)isequal(B,x),A);
A = [A(~idx) A(idx)];
end
This would make for a nice CODY problem, by the way.
Abdullah Caliskan
Abdullah Caliskan el 27 de En. de 2015

0 votos

k=ismember(A,B) A(k)='' if sum(k)==0 A=A; else A=[A B] end
David Young
David Young el 27 de En. de 2015

0 votos

[~, idx] = ismember(B, A);
C = circshift(A, [0 -idx]);

1 comentario

David Young
David Young el 27 de En. de 2015
Note: does not preserve the ordering of the other elements.

Iniciar sesión para comentar.

Categorías

Más información sobre Startup and Shutdown en Centro de ayuda y File Exchange.

Productos

Preguntada:

el 22 de Jul. de 2013

Comentada:

el 27 de En. de 2015

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by