Swap Characters of a Single Word
Description:
In the given input word, convert the lower case to upper case and vice versa.
A to a, a to A ...
Example:
'Matl...
Compute Fibonacci Number
Compute the n-th Fibonacci Number
f(0) = 0, f(1) = 1, f(2) = 1, f(3) = 2, ... f(42) = 267914296
約3年 前
解決済み
Is this number Munchhausen?
In this problem, simply return 1 if a supplied number is Munchhausen or 0 if not.
Example
153 is narcissistic but not a Munchh...
約3年 前
解決済み
Armstrong Number
Determine whether the given input n-digit number is Armstrong Number or not.
Return True if it is an Armstrong Number. An n-Dig...
約3年 前
解決済み
Generate a Parasitic Number
This problem is the next step up from Problem 156. Rather than determining if an input is a parasitic number, you will be asked ...