Pregunta de entrevista de Microsoft

finad all plaindromes ina string.

Respuestas de entrevistas

Anónimo

2 nov 2012

vector findAllPalindrome ( string str) { vector stack; vector result; string buff = ""; int len = str.length(); if (len == 0) return result; stack.push_back(str[0]); for (int i = 1; i

Anónimo

14 ago 2012

i couldn't really come up with decent code for this, and i think this was the turning point in the interview which otherwise was going alright.

1