1
0
Fork 0
mirror of https://gitlab.com/mfocko/LeetCode.git synced 2024-09-19 17:56:55 +02:00

problems(js): add “2700. Differences Between Two Objects”

Signed-off-by: Matej Focko <mfocko@redhat.com>
This commit is contained in:
Matej Focko 2023-06-03 23:43:12 +02:00
parent 799bc6f803
commit 5253091624
Signed by: mfocko
GPG key ID: 7C47D46246790496

View file

@ -0,0 +1,29 @@
/**
* @param {object} obj1
* @param {object} obj2
* @return {object}
*/
function objDiff(obj1, obj2) {
if (obj1 === obj2) {
return {};
}
if (
obj1 === null || obj2 === null
|| typeof obj1 !== 'object' || typeof obj2 !== 'object'
|| Array.isArray(obj1) !== Array.isArray(obj2)
) {
return [obj1, obj2];
}
let result = {};
for (let key in obj1) {
if (key in obj2) {
let diff = objDiff(obj1[key], obj2[key]);
if (Object.keys(diff).length) {
result[key] = diff;
}
}
}
return result;
};