Skip to content

Instantly share code, notes, and snippets.

@kuoe0
Created December 14, 2013 12:33
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 kuoe0/7958677 to your computer and use it in GitHub Desktop.
Save kuoe0/7958677 to your computer and use it in GitHub Desktop.
check integer divisible by 3 using string conversion
#! /usr/bin/env python
# -*- coding: utf-8 -*-
# vim:fenc=utf-8
#
# Copyright © 2013 KuoE0 <kuoe0.tw@gmail.com>
#
# Distributed under terms of the MIT license.
"""
"""
def add_digits(x):
return sum([int(d) for d in str(x)])
def divisible_3(x):
while x >= 10:
x = add_digits(x)
return x in [0, 3, 6, 9]
if __name__ == "__main__":
import sys
for i in range(int(sys.argv[1])):
print i, divisible_3(i)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment