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
In this case you have two arrays that look like this:
Element
Left Side
Right Side
0
1
1
1
2
2
2
3
4
3
4
missing
In this case there are two differences between these two arrays. The first difference is that the second elements have different values: The left-side value is 3 and the right-side value is 4. The second difference is that the right-side array is missing the third value.
This would be a little easier to see if the arrays had different values. Like this:
Left:
[1,2,3,4]
Right:
[1,2,4]
Expected outcome:
2
from the array on the right sideActual outcome:
2
]3
from the array on the right sideThe text was updated successfully, but these errors were encountered: