Getting Started with Python

Python is a robust and adaptable programming language that finds numerous applicability in web development, scientific computing, data analysis, artificial intelligence, and more. It is easy to le…

Read More

Getting Started with Python

Python is a robust and adaptable programming language that finds numerous applicability in web development, scientific computing, data analysis, artificial intelligence, and more. It is easy to le… Read More

(Senior Software Engineer) 2 years, 2 months ago . 626 views

Python Variables

Python is a robust and adaptable programming language that finds numerous applicability in web development, scientific computing, data analysis, artificial intelligence, and more. It is easy to le… Read More

(Senior Software Engineer) 2 years ago . 536 views
All Stories

Minimum Number of Jumps

Minimum Number of Jumps The problem tackled by the min_number_of_jumps function is finding the minimum number of jumps needed to reach the end of … Read More

ago ; 231 views

Topological Sort Algorithm

Topological Sort Algorithm A topological sort algorithm is a method for ordering nodes in a directed acyclic graph (DAG). It does so in a manne… Read More

ago ; 281 views

Disk Stacking

Problem Case Given a list of disks represented by their dimensions [width, depth, height], the problem is to find the maximum height achievable by… Read More

ago ; 261 views

Knapsack Problem

Knapsack Problem The Knapsack Problem involves selecting a combination of items to maximize the value while staying within the capacity constraint… Read More

ago ; 265 views

Water Area

Problem Case The problem is to find the total area of trapped rainwater between a series of walls represented by the given heights. Solution: A… Read More

ago ; 242 views

Find the Three Largest Numbers in an Array

How  to Find the Three Largest Numbers in an Array The aim of this question is to return a list of three numbers that are the largest in the … Read More

ago ; 306 views

Continuous Median

Continuous Median Given a stream of numbers, we want to calculate a continuous median. class ContinuousMedianHandler: """ A class t… Read More

ago ; 253 views

Shifted Binary Search

Shifted Binary Search This code performs a binary search on a shifted sorted array to find the index of the target element. The shifted_binary_sea… Read More

ago ; 269 views

Find Loop in a Linked List

Find Loop in a Linked List This case solves the problem of finding the starting node of a loop in a linked list. A node in a linked list with a… Read More

ago ; 284 views

The Boggle Board problem

The Boggle Board problem The Boggle Board problem can be expressed as follows: Given a Boggle board consisting of n×m cells filled with c… Read More

ago ; 336 views

Popular