This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// made according to typst ieee template and official acm word template | |
// --- Draft Formatting | |
// Papers will be submitted electronically in PDF format via the web submission form. | |
// 1. Submissions may have at most 12 pages of technical content, including all text, figures, tables, etc. Bibliographic references are not included in the 12-page limit. | |
// 2. Use A4 or US letter paper size, with all text and figures fitting inside a 178 x 229 mm (7 x 9 in) block centered on the page, using two columns separated by 8 mm (0.33) of whitespace. | |
// 3. Use 10-point font (typeface Times Roman, Linux Libertine, etc.) on 12-point (single-spaced) leading. | |
// 4. Graphs and figures should be readable when printed in grayscale, without magnification. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function getCongruency(a, b, c, Al, Be, Ga) { | |
var allGiven = [a, b, c, Al, Be, Ga]; | |
var given = []; | |
for (var i = 0; i < 6; i++) { | |
if (allGiven[i] != null) { | |
given.push(allGiven[i]); | |
} | |
} | |
} |