Question d’entretien chez Meta

Find the mismatching words between 2 strings- Java

Réponses aux questions d'entretien

Utilisateur anonyme

3 avr. 2020

Fill in nulls in an integer array w/ previous non null values in the integer array- Java

Utilisateur anonyme

31 juill. 2020

Hi did you get the call

Utilisateur anonyme

29 nov. 2020

def mismatch(str1,str2): first_str = set(str1.split(' ')) second_str = set(str2.split(' ')) return (first_str - second_str) | (second_str - first_str)