Coding Problems

Print Pascal's Triangle with n rows

Not Started
Pattern 1000ms

Print star pyramid with n levels

Not Started
Pattern 1000ms

Count trailing zeros in n! (number of times divisible by 10)

Not Started
Math 1000ms

Convert decimal number to binary representation

Not Started
Math 1000ms

Check if number equals sum of its own digits each raised to power of number of digits

Not Started
Math 1000ms

Calculate base^exponent without using built-in exponentiation

Not Started
Math 1000ms

Find nth Fibonacci number using recursion (F(n) = F(n-1) + F(n-2))

Not Started
Algorithms 1000ms

Determine if a year is a leap year (divisible by 4, not by 100 unless also by 400)

Not Started
Basic 1000ms

Calculate factorial using recursion

Not Started
Algorithms 1000ms

Sum all values in a dictionary

Not Started
Data Structures 1000ms

Create and print a dictionary with 3 key-value pairs

Not Started
Data Structures 1000ms

Remove duplicate values from list

Not Started
Data Structures 1000ms

Count occurrences of element in list

Not Started
Data Structures 1000ms

Find the largest number in a list

Not Started
Data Structures 1000ms

Replace all spaces in string with underscores

Not Started
String 1000ms

Convert string to uppercase without built-in function

Not Started
String 1000ms

Reverse the digits of a number

Not Started
Math 1000ms

Print Fibonacci series up to n terms

Not Started
Math 1000ms

Calculate factorial using iteration

Not Started
Math 1000ms

Calculate the sum of all numbers from 1 to n

Not Started
Math 1000ms