A PHP Error was encountered

Severity: 8192

Message: str_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated

Filename: libraries/Filtered_db.php

Line Number: 23

Write a Python program to check common elements between two given list are in same order or not.
Q:

Write a Python program to check common elements between two given list are in same order or not.

0

Write a Python program to check common elements between two given list are in same order or not.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

def same_order(l1, l2):
    common_elements = set(l1) & set(l2)
    l1 = [e for e in l1 if e in common_elements]
    l2 = [e for e in l2 if e in common_elements]
    return l1 == l2

color1 = ["red","green","black","orange"]
color2 = ["red","pink","green","white","black"]
color3 = ["white","orange","pink","black"]

print("Original lists:")
print(color1)
print(color2)
print(color3)
print("\nTest common elements between color1 and color2 are in same order?")
print(same_order(color1, color2))
print("\nTest common elements between color1 and color3 are in same order?")
print(same_order(color1, color3))
print("\nTest common elements between color2 and color3 are in same order?")
print(same_order(color2, color3))

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now