Pregunta de entrevista de Microsoft

searching for patterns in strings; how to destroy your functions with different testing cases;

Respuestas de entrevistas

Anónimo

19 abr 2012

Input: “Internet” and search string is “net”. Output:5 static void Main(string[] args) { string temp = "internet"; string s = "net"; int j = 0; int i = 0; char[] c = temp.ToCharArray(); char[] c1 = s.ToCharArray(); for (; i

Anónimo

16 oct 2012

Hi your program won't find "bbc" in "bbbc".