We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
- Prepare
- Mathematics
- Fundamentals
- Handshake
- Discussions
Handshake
Handshake
Sort by
recency
|
328 Discussions
|
Please Login in order to post a comment
Swift Solution:
guys how solve
Simple Code: def handshake(n): return sum(range(n))
Simple Code: def handshake(n): return sum(range(n))
Is recursion not accepted in this challenge? Submitted a solution in Python using recursion, worked in using customed input, but in 9 out of 10 submission tests encountered runtime error.