// 计算曼哈顿距离
function manhattanDistance(s, t) {
let sum = 0;
for (let i = 0; i < s.length; i++) {
sum +
2023-06-21