class Solution: def __init__(self, n): self.n = n def number_se7en(self): return (self.n - 1) // 7 + 1
Loading collection data...