Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
a = 1; b=0, cin=0;
y = [0 1];
assert(isequal(full_adder(a,b,cin),y))
b =
0
ans =
[]
|
2 | Pass |
%%
a = [0;1;0;1;0;1;0;1]; b=[0;0;1;1;0;0;1;1];cin=[0;0;0;0;1;1;1;1];;
y = [0 0;0 1;0 1; 1 0;0 1; 1 0;1 0;1 1];
assert(isequal(full_adder(a,b,cin),y))
ans =
[]
|
831 Solvers
188 Solvers
Back to basics 11 - Max Integer
678 Solvers
Sort numbers by outside digits
128 Solvers
141 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!