Skip to content

Instantly share code, notes, and snippets.

@oboenikui
Last active July 5, 2016 16:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save oboenikui/d1f656d9dd4b4f5d0956806ef8a2f1d2 to your computer and use it in GitHub Desktop.
Save oboenikui/d1f656d9dd4b4f5d0956806ef8a2f1d2 to your computer and use it in GitHub Desktop.
放送時間表記の正規化のイメージ
if 放送日時.時 < 4:
放送日時.日 += 1
else if 放送日時.時 >= 24:
放送日時.日 += 1
放送日時.時 -= 24
end if
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment