Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,868 questions

51,791 answers

573 users

How to count the triangles that can be formed using three different elements of an array in TypeScript

1 Answer

0 votes
function GetNumberOfTriangles(arr : number[]) {
    const size : number = arr.length;
    let count : number = 0;
        
    for (let i : number = 0; i < size; i++) {
        for (let j : number = i + 1; j < size; j++) {
            for (let k : number = j + 1; k < size; k++) {
                // triangle = sum of two sides > value of the third side
                if (arr[i] + arr[j] > arr[k] && 
                    arr[i] + arr[k] > arr[j] && 
                    arr[k] + arr[j] > arr[i]) {
                    console.log(arr[i] + " " + arr[j] + " " + arr[k]);
                    count++;
                }
            }
        }
    }
    return count;
}
        
const arr : number[] = [2, 3, 4, 5, 6, 7];
        
console.log(GetNumberOfTriangles(arr));




/*
run:

"2 3 4"
"2 4 5"
"2 5 6"
"2 6 7"
"3 4 5"
"3 4 6"
"3 5 6"
"3 5 7"
"3 6 7"
"4 5 6"
"4 5 7"
"4 6 7"
"5 6 7"
13

*/

 



answered Sep 12, 2022 by avibootz
...