Count Combinations Of Steps On A Staircase With N Steps – Dynamic Programming
THE PROBLEM STATEMENT There’s a staircase with N steps, and you can climb 1 or 2 steps at a time. Given N, write a function that returns count of unique…
Continue reading-->
THE PROBLEM STATEMENT There’s a staircase with N steps, and you can climb 1 or 2 steps at a time. Given N, write a function that returns count of unique…
Continue readingTHE PROBLEM STATEMENT There’s a staircase with N steps, and you can climb 1 or 2 steps at a time. Given N, write a function that returns the list of…
Continue readingTHE PROBLEM STATEMENT Implement a method to perform basic string decompression using the counts of repeated characters. For example, the string “a2bd3” would become “aabddd”. Also do you think you…
Continue readingTHE PROBLEM STATEMENT You have an integer array and a sum. You have to find first pair that sums up to the given sum number. Return the pair. Example 1…
Continue readingTHE PROBLEM STATEMENT A conveyor belt has packages that must be shipped from one port to another within D days. The i-th package on the conveyor belt has a weight…
Continue reading