Skip to content

Commit

Permalink
Update self-dividing-numbers.py
Browse files Browse the repository at this point in the history
  • Loading branch information
kamyu104 authored Nov 20, 2017
1 parent 53c0af3 commit 0bd7ee6
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions Python/self-dividing-numbers.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,24 @@
# Time: O(nlogn)
# Space: O(1)

# A self-dividing number is a number that is divisible by every digit it contains.
#
# For example, 128 is a self-dividing number because 128 % 1 == 0,
# 128 % 2 == 0, and 128 % 8 == 0.
#
# Also, a self-dividing number is not allowed to contain the digit zero.
#
# Given a lower and upper number bound, output a list of every possible self dividing number,
# including the bounds if possible.
#
# Example 1:
# Input:
# left = 1, right = 22
# Output: [1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 15, 22]
#
# Note:
# - The boundaries of each input argument are 1 <= left <= right <= 10000.

class Solution(object):
def selfDividingNumbers(self, left, right):
"""
Expand Down

0 comments on commit 0bd7ee6

Please sign in to comment.