Coding Quiz - 1, 2, 3 Addition
Write a function to find the number of ways to form a specific number using Dynamic Programming (DP).
Write a function to find the number of ways to form a specific number using Dynamic Programming (DP).
Write a function that calculates the minimum total time required for people to withdraw money from an ATM using a greedy algorithm.
Write a function to apply the Caesar cipher to a string
Write a function to calculate the sum of all elements in a list recursively.
Learn how to calculate squares in Python and implement it in code.
Write a function to create a dictionary
Write a function to generate a list of numbers that are powers of 2
Creating a Car Class
Write a function to determine if two given strings are anagrams
Return a grade corresponding to the score
Write a function that determines if each element in a list is odd or even.
Write a function to traverse a 2D array diagonally
Use filter() and map() to extract only odd numbers from a list.
Implement the Fibonacci sequence using a recursive function.
Write a function that returns a list of all prime numbers within a given integer range
Write a function to find the union and intersection of two sets
Write a function to find the unique words in an array of strings
Write a function to find a specific element in a list using a sequential search.
Write a function to find the indices of two numbers in an array that add up to a specific target
Write a function to find rotten apples.
Write a function to flatten a 2D array into a 1D array.
Create a program that takes a list of strings and outputs the length of each string.
Write a function to find the index of a target value in a list using binary search.
Create a function that sorts a list of numbers in ascending order using the bubble sort algorithm.
Write a function to sort a list of numbers in ascending order using the insertion sort algorithm.
Create a simple hash table data structure using Python.
Create a simple linked list data structure in Python.
Create a simple queue data structure using Python.
Create a simple stack data structure in Python.
Create a simple array data structure using Python.
Class Quiz
Write a function that sorts a list of numbers in ascending order using the selection sort algorithm.
Calculate the minimum number of operations to reduce a given integer n to 1 using dynamic programming
Write a function to find the most profitable buy and sell days from a list of stock prices.
Coding quiz to print the order of visits using BFS
Write code to dynamically format output based on input values.
Write a function to determine if a given string is a palindrome.
Write a function that converts Celsius(C) to Fahrenheit(F) and vice versa
Write a function to remove the smallest number from a list of integers
Write a program using a Python function to return 10 times the given number.
Write a function to reverse a string
Write a function using the dictionary get method to safely extract values for specific keys.
Create a function to sort a list of numbers in ascending order using the merge sort algorithm.
Create a function that sorts a list of numbers in ascending order using the quick sort algorithm.
A coding quiz using Python's `sort()` function for list sorting
Write a function that sorts a list of tuples consisting of names and scores in descending order by the score.
A coding quiz using Python's find() and rfind() functions to locate specific parts within a string.
Write a function that converts characters at even indices to uppercase and characters at odd indices to lowercase
A coding quiz to print the visit order using DFS
Output the value obtained by adding 5 to a given number.
A coding quiz using Python's integer division operator '//' to return integer results
A coding quiz to return a specific character from a string using Python string indexing