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
Open
qq9068149 opened this issue
Jul 1, 2022
· 0 comments
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: