我正在编写此函数,如果字符串仅相差一个字符,则返回不同的字符位置,如果它们是正确的,则应该返回 -1 和 -10,以防它们相差超过 1 个字符。
只是为了举例,'010'
and '110'
or '100'
and'110'
效果很好,每个返回 0 和 1 ......
但是,当我尝试使用'100'
and'101'
或 with 时'110'
,'111'
我得到 -1 的结果,而它应该是 2!我已经完成了桌面测试,但我不能只看到错误。
function combine (m1, m2 : string) : integer;
var
dash : integer;
distinct : integer;
i : integer;
begin
distinct := 0;
dash := -1;
for i := 0 to Length(m1)-1 do
begin
if m1[i] <> m2[i] then
begin
distinct := distinct+1;
dash := i;
if distinct > 1 then
begin
result:= -10;
exit;
end;
end;
end;
result := dash;
end;
我总是得到相同长度的字符串, 我做错了什么?