Created
May 31, 2022 18:28
-
-
Save shaddamalbz/dc3a58cf612c693814cd4e5cfa489bc0 to your computer and use it in GitHub Desktop.
Hackerank Solutions
This file contains 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 handshake(n) { | |
// Write your code here | |
return (n * (n - 1)) / 2;; | |
} |
This file contains 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 maximumDraws(n) { | |
// Write your code here | |
return n+1 | |
} |
This file contains 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 lowestTriangle(trianglebase, area) { | |
// Write your code here | |
return Math.ceil(area * 2 / trianglebase); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment