You are viewing a single comment's thread. Return to all comments →
fn saveThePrisoner(n: i32, m: i32, s: i32) -> i32 { let result = (s + m - 1) % n; if result == 0 { n } else { result } }
Seems like cookies are disabled on this browser, please enable them to open this website
I agree to HackerRank's Terms of Service and Privacy Policy.
Save the Prisoner!
You are viewing a single comment's thread. Return to all comments →