Coding Problems
Factorial Trailing Zeros
MediumCount trailing zeros in n! (number of times divisible by 10)
Not Started
Math
1000ms
Armstrong Number
EasyCheck if number equals sum of its own digits each raised to power of number of digits
Not Started
Math
1000ms
Power Calculation
EasyCalculate base^exponent without using built-in exponentiation
Not Started
Math
1000ms
Recursive Fibonacci
MediumFind nth Fibonacci number using recursion (F(n) = F(n-1) + F(n-2))
Not Started
Algorithms
1000ms
Leap Year Check
EasyDetermine if a year is a leap year (divisible by 4, not by 100 unless also by 400)
Not Started
Basic
1000ms
Create Dictionary
EasyCreate and print a dictionary with 3 key-value pairs
Not Started
Data Structures
1000ms
String to Uppercase
EasyConvert string to uppercase without built-in function
Not Started
String
1000ms