Skip to content

Instantly share code, notes, and snippets.

View minomy13's full-sized avatar
💥
Enhancing my Rust skills...

Adrian Mysak minomy13

💥
Enhancing my Rust skills...
View GitHub Profile
@minomy13
minomy13 / congruency_sentence.js
Last active November 29, 2021 20:48
Cungruency Get the congruency sentence of a triangle. #maths
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]);
}
}
}