Skip to content

Instantly share code, notes, and snippets.

@shaddamalbz
Created May 31, 2022 18:28
Show Gist options
  • Save shaddamalbz/dc3a58cf612c693814cd4e5cfa489bc0 to your computer and use it in GitHub Desktop.
Save shaddamalbz/dc3a58cf612c693814cd4e5cfa489bc0 to your computer and use it in GitHub Desktop.
Hackerank Solutions
function handshake(n) {
// Write your code here
return (n * (n - 1)) / 2;;
}
function maximumDraws(n) {
// Write your code here
return n+1
}
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