Merge branch 'set-algebra'
This commit is contained in:
commit
fad7e9eb9a
BIN
Set-Algebra/Complement.png
Normal file
BIN
Set-Algebra/Complement.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.9 KiB |
BIN
Set-Algebra/Intersection.png
Normal file
BIN
Set-Algebra/Intersection.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.1 KiB |
BIN
Set-Algebra/Substraction.png
Normal file
BIN
Set-Algebra/Substraction.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.2 KiB |
BIN
Set-Algebra/Union.png
Normal file
BIN
Set-Algebra/Union.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.3 KiB |
@ -303,21 +303,26 @@ function printStep(operation, firstSet, secondSet, result) {
|
||||
step++;
|
||||
|
||||
let str = '';
|
||||
let img = "";
|
||||
switch (operation) {
|
||||
case '!':
|
||||
str = `!${setToString(firstSet)} = ${setToString(result)}`;
|
||||
img = "Complement.png";
|
||||
break;
|
||||
|
||||
case '/':
|
||||
str = `${setToString(firstSet)} / ${setToString(secondSet)} = ${setToString(result)}`;
|
||||
img = "Intersection.png";
|
||||
break;
|
||||
|
||||
case '+':
|
||||
str = `${setToString(firstSet)} + ${setToString(secondSet)} = ${setToString(result)}`;
|
||||
img = "Union.png";
|
||||
break;
|
||||
|
||||
case '-':
|
||||
str = `${setToString(firstSet)} - ${setToString(secondSet)} = ${setToString(result)}`;
|
||||
img = "Substraction.png";
|
||||
break;
|
||||
|
||||
default:
|
||||
@ -328,6 +333,7 @@ function printStep(operation, firstSet, secondSet, result) {
|
||||
steps.insertAdjacentHTML('beforeend', ` <div class="input-wrap">
|
||||
<h1 class="text">${step}. </h1>
|
||||
<div class="input"><input type="result" value="${str}" readonly/></div>
|
||||
<img src="${img}">
|
||||
</div>`);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user