Skip to content

Instantly share code, notes, and snippets.

@nissuk
Created April 26, 2012 16:17
Show Gist options
  • Save nissuk/2500689 to your computer and use it in GitHub Desktop.
Save nissuk/2500689 to your computer and use it in GitHub Desktop.
TopCoder SRM 144(200)
public class Time {
public String whatTime(int seconds) {
return seconds / 3600 + ":" + seconds % 3600 / 60 + ":" + seconds % 60;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment