Problem 195. Program an exclusive OR operation with logical operators

Program an exclusive or operation without using the MATLAB function xor.

Use logical operators like |, &, ~, ... instead.

Examples:

myXOR(1,1)
ans = 0
myXOR(1,0)
ans = 1
myXOR(0,1)
ans = 1
myXOR(0,0)
ans = 0

Solution Stats

57.07% Correct | 42.93% Incorrect
Last Solution submitted on Mar 08, 2024

Problem Comments

Solution Comments

Show comments

Problem Recent Solvers704

Suggested Problems

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!