반응형
Due to another of his misbehaved, the primary school's teacher of the young Gauß, Herr J.G. Büttner, to keep the bored and unruly young schoolboy Karl Friedrich Gauss busy for a good long time, while he teaching arithmetic to his mates, assigned him the problem of adding up all the whole numbers from 1 through a given number n.
Your task is to help the young Carl Friedrich to solve this problem as quickly as you can; so, he can astonish his teacher and rescue his recreation interval.
Here's, an example:
f(n=100) // returns 5050
It's your duty to verify that n is a valid positive integer number. If not, please, return false (None for Python, null for C#, 0 for COBOL).
Solution:
def validate_int(func):
def wrapper(n):
if not isinstance(n, int):
return
if n < 1:
return
return func(n)
return wrapper
@validate_int
def f(n: int) -> int:
return sum(range(1, n+1))
반응형
'나는 이렇게 학습한다 > Algorithm & SQL' 카테고리의 다른 글
0130. Grasshopper - Personalized Message (0) | 2023.01.31 |
---|---|
0129. Super Duper Easy (0) | 2023.01.29 |
0127. Remove the time (0) | 2023.01.28 |
0126. Over The Road (0) | 2023.01.27 |
0125. Counting sheep... (0) | 2023.01.25 |