Hi,Can any one help me on the below program, as I need the missing element for array "a" to be printed when compared with array "b"
Program: import std.stdio, std.array, std.algorithm; string[] a = ["test1", "test2", "test4"]; string[] b = ["test2", "test4"]; void main () { auto m = mismatch(a,b); writeln(m[0]); writeln(m[1]); } Output: ["test1", "test2", "test4"] ["test2", "test4"] Required output: "test1" From, Vino.B