इस लेख में, हम लैम्ब्डा एक्सप्रेशन और फ़िल्टर फ़ंक्शन की सहायता से पायथन में दो सरणियों के प्रतिच्छेदन के बारे में जानेंगे।
समस्या यह है कि हमें दो सरणियाँ दी गई हैं, हमें उन दोनों में सामान्य तत्वों का पता लगाना है।
एल्गोरिदम
1. Declaring an intersection function with two arguments. 2. Now we use the lambda expression to create an inline function for selection of elements with the help of filter function checking that element is contained in both the list or not. 3. Finally, we convert all the common elements in the form of a list by the help of typecasting. 4. And then we display the output by the help of the print statement.
आइए अब इसके क्रियान्वयन पर एक नजर डालते हैं:
उदाहरण
def interSection(arr1,arr2): # finding common elements # using filter method oto find identical values via lambda function values = list(filter(lambda x: x in arr1, arr2)) print ("Intersection of arr1 & arr2 is: ",values) # Driver program if __name__ == "__main__": arr1 = ['t','u','t','o','r','i','a','l'] arr2 = ['p','o','i','n','t'] interSection(arr1,arr2)
आउटपुट
Intersection of arr1 & arr2 is: ['o', 'i', 't']
निष्कर्ष
इस लेख में, हमने लैम्ब्डा एक्सप्रेशन और फ़िल्टर फ़ंक्शन और इसके कार्यान्वयन की सहायता से पायथन में दो सरणियों के प्रतिच्छेदन के बारे में सीखा।