You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
let nums1 = [3,3,2] let nums2 = [1,2,3,3,2,2,4444] function res (nums1,nums2){ let a = [] for (const item of nums1) { for (const i in nums2) { if(item==nums2[i]){ a.push(nums2[i]) nums2.splice(i,1) break } } }; return a } console.log(res(nums1,nums2))
#574
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
let nums1 = [3,3,2]
let nums2 = [1,2,3,3,2,2,4444]
function res (nums1,nums2){
let a = []
for (const item of nums1) {
for (const i in nums2) {
if(item==nums2[i]){
a.push(nums2[i])
nums2.splice(i,1)
break
}
}
};
return a
}
console.log(res(nums1,nums2))
The text was updated successfully, but these errors were encountered:
let nums1 = [3,3,2]
let nums2 = [1,2,3,3,2,2,4444]
function res (nums1,nums2){
let a = []
for (const item of nums1) {
for (const i in nums2) {
if(item==nums2[i]){
a.push(nums2[i])
nums2.splice(i,1)
break
}
}
};
return a
}
console.log(res(nums1,nums2))
The text was updated successfully, but these errors were encountered: