Courses
Tutorials
Practice
Jobs
DSA
Practice Problems
C
C++
Java
Python
JavaScript
Data Science
Machine Learning
Courses
Linux
DevOps
Check if Any Common String Exists in Two Arrays
Given two arrays of strings s[] and t[] of sizes n and m, respectively, find if they share at least one common string.Examples:Input: s[] = ["cake", "pastry", "fish", "can...
Read More
DSA
strings
Good String
Given a string s, find if it is good. A string is considered good if the cyclic distance between every pair of adjacent characters is exactly 1. Return true if it is good...
Read More
DSA
Check if Floor and Ceil Diff in an Array is Same for a Number
Given a sorted array arr[] and an integer x, determine whether x is at the same absolute distance from its floor and ceil i.e. the difference between x and its floor is th...
Read More
DSA
Binary Search
Next Closest Time
Given a time represented in the format "HH:MM", find the next closest time by reusing the current digits. There is no limit on how many times a digit can be reused.Assume ...
Read More
DSA
Claude Chat
Claude Chat is Anthropic's conversational AI assistant that allows users to interact with Claude using natural language. It can answer questions, generate content, analyze...
Read More
Artificial Intelligence
Target with Repeated 1, 2 and 3 Jumps
Geek starts at point 0 on a number line. He jumps in a repeating pattern of lengths 1, 2, 3, 1, 2, 3.... and so on. A jump of length 1 moves him from P to P + 1. A jump of...
Read More
DSA
Equilibrium Points
Magnets are placed on X axis, the coordinates of which are given in sorted order, you need to find out the X-coordinates of all the equilibrium points (i.e. the point wher...
Read More
DSA
Claude Design
Claude Design is Anthropic's AI-powered design workspace available through claude.ai/design and the Claude Desktop app. It provides a split-screen interface where you can ...
Read More
Artificial Intelligence
Claude Cowork
Claude Cowork is Anthropic's AI workspace designed to help users complete complex tasks with minimal supervision. Unlike a regular chat, Cowork can plan, execute and manag...
Read More
Artificial Intelligence
Claude Desktop Installation
Claude Desktop is Anthropic's official desktop application for Windows, macOS, and Linux that combines Claude Chat, Claude Code, and Claude Cowork into a single interface....
Read More
Artificial Intelligence
Check if Every Consecutive Triplet in an Array Can Form a Triangle
Given an integer array arr[] of integers, consider every group of three consecutive (adjacent) elements in the array. For each such triplet (arr[i], arr[i + 1], arr[i + 2]...
Read More
DSA
Convert String to Lowercase
Given a string s, convert all uppercase characters in the string to their corresponding lowercase characters and return the resulting string.Examples:Input: s = "ABCddE"Ou...
Read More
DSA
Check for Specific Order Around Mid
Given an array arr[] of size n representing the heights of pillars on a track, determine whether the track is valid.A track is valid if:The middle pillar has height exactl...
Read More
DSA
Jumpy Ball
Given a jumpy ball that is thrown vertically upward from the ground to a height of h, it rebounds to a height of floor(h / 2) every time it hits the ground. The rebounding...
Read More
DSA
Sum of Multiples
Given two integers n and k, consider all multiples of k that are less than or equal to n. Return the sum of these multiples.Examples:Input: n = 5, k = 2Output: 6Explanatio...
Read More
DSA
1
2
3
4
...
12157