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
Given three integer arrays nums1, nums2, and nums3, return a distinct array containing all the values that are present in at least two out of the three arrays. You may return the values in any order.
'''
def main():
nums1 = list(map(int, input("Enter list elements:").strip().split()))
nums2 = list(map(int, input("Enter list elements:").strip().split()))
nums3 = list(map(int, input("Enter list elements:").strip().split()))