Learned or Solved Something Today?

Dump it here! Let others learn from you

Showing 20 of 22 from page 1

tikev39 posted in #python #interviewquestion #code #hackerrank-solutions #hackerrankproblem #codingchallenge

Solution in python3 for 'Validate subsequence' problem on AlgoExpert

Solution in python3 for Validate subsequence problem on AlgoExpert s website. If you have any questions regarding my code, feel free to ask in the comments

tikev39 posted in #python #algorithms #code #recursion #interviewquestion #codingchallenge

Solution in python3 for 'River Sizes' problem on AlgoExpert

Solution in python3 for River Sizes problem on AlgoExpert s website. If you have any questions regarding my code, feel free to ask in the comments

bytebot posted in #js #javascript #math #tutorial #interviewquestion

Check Whether A Given Number Is An Ugly Number - Javascript Solution

Ugly Number is an example of math problems In this post we will see how we can solve it in Javascript Problem Description Write a program to check whether a given number is an ugly number Ugly numbers

bytebot posted in #js #javascript #math #tutorial #interviewquestion

How to Convert Roman Numerals To Integer In Javascript

Roman To Integer is an example of math problems In this post we will implement romanToInt function in Javascript to convert Roman numerals Problem Description Roman numerals are represented by seven d

bytebot posted in #js #javascript #math #tutorial #interviewquestion

How To Reverse Digits Of An Integer - Javascript Solution

Reverse Integer is an example of math problems In this post we will see how we can solve it in Javascript Problem Description Given a 32 bit signed integer reverse digits of an integer Example 1 Input

bytebot posted in #javascript #math #tutorial #interviewquestion #beginners

Write A Function To Check If It Is A Power Of Two - Javascript Solution

Finding if a number is a Power Of Two is an example of math problems In this post we will see how we can solve it in Javascript Problem Description Given an integer write a function to determine if it

bytebot posted in #javascript #math #tutorial #beginners #interviewquestion

Write A Function To Determine If It Is A Power Of Three - Javascript Solution

Finding if a number is a Power Of Three is an example of math problems In this post we will see how we can solve it in Javascript Problem Description Given an integer write a function to determine if

bytebot posted in #javascript #math #tutorial #interviewquestion #beginners

Write A Function To Check If It Is Power Of Four - Javascript Solution

Find if a number is a Power Of Four is an example of math problems In this post we will see how we can solve it in Javascript Problem Description Given an integer signed 32 bits write a function to ch

bytebot posted in #js #javascript #math #tutorial #interviewquestion

Find The Nth Digit Of An Infinite Integer Sequence - Javascript Solution

Finding Nth Digit is an example of math problems In this post we will see how we can solve it in Javascript Problem Description Find the n th digit of the infinite integer sequence 1 2 3 4 5 6 7 8 9 1

bytebot posted in #javascript #math #tutorial #interviewquestion #beginners

Given An Integer n, Return Number Of Trailing zeroes In n Factorial - Javascript Solution

Factorial Trailing Zeroes is an example of math problems In this post we will see how we can solve it in Javascript Problem Description Given an integer n return the number of trailing zeroes in n Exa

bytebot posted in #javascript #math #tutorial #beginners #interviewquestion

Given Positive Integer, Return Its Corresponding Column Title As an Excel sheet - Javascript Solution

Excel Sheet Column Title is an example of math problems In this post we will see how we can solve it in Javascript Problem Description Given a positive integer return its corresponding column title as

bytebot posted in #codingchallenge #leetcode #sql #interviewquestion

SQL Solution For LeetCode Problem: nth Highest Salary

Solving nth Highest Salary in SQL Please try yourself first to solve the problem and submit your implementation to LeetCode before looking into solution Problem Description Nth Highest Salary Write a

bytebot posted in #codingchallenge #leetcode #sql #interviewquestion

SQL Solution For LeetCode Problem: Second highest salary

Solving Second highest salary in SQL This is also a classic interview question Please try yourself first to solve the problem and submit your implementation to LeetCode before looking into solution Pr

metabox posted in #javascript #leetcode #interviewquestion #codingchallenge

Javascript Solution For : Top K Frequent Elements | Leetcode Problem

Finding most frequent element is also a classic interview question Here s my javascript solution for this leecode exercise problem Problem Given a non empty array of integers return the k most frequen

metabox posted in #javascript #apple #uber #interviewquestion #codingchallenge

Solution For Interview Question: Sudoku2 | Asked By Apple & Uber

The Sudoku problem has been a part of many interview question and many companies including Apple Uber During the practice problem solving here s how I solve Sudoku problem in Javascript Problem Sudoku

metabox posted in #javascript #amazon #microsoft #apple #interviewquestion #codingchallenge

Solution For Interview Question: Rotate Array Matrix | Asked By Amazon, Microsoft, Apple

Solving array rotation problem is one of my favourite problem You have to rotate a 2D array with certain conditions This simple question has been asked in many different interviews in companies includ

metabox posted in #javascript #codingchallenge #amazon #interviewquestion

Solution For Interview Question: First Not Repeating Character | Asked By Amazon

First Non Repeating Character is another interview question that has been asked by Amazon and several companies Here you have to find first occurrence of aa non repeating character from a given string

metabox posted in #javascript #codingchallenge #interviewquestion #google

Solution For Interview Question: First Duplication | Asked By Google

Find First Duplicate is one of a classic interview question that has been asked by google which you can solve in codesignal But if you are looking for a different solution than yours here s how I solv

metabox posted in #go #codingchallenge #hackerrank-solutions #beginners #interviewquestion

GoLang Solution For HackerRank Problem: Counting Valleys

Solving HackerRank Problem  Counting Valleys In Go Language Problem An avid hiker keeps meticulous records of their hikes During the last hike that took exactly steps for every step it was noted if it

metabox posted in #go #hackerrank-solutions #beginners #interviewquestion #codingchallenge

GoLang Solution For HackerRank Problem: Sales by Match

Solving HackerRank Problem  Sales by Match In Go Language Problem Alex works at a clothing store There is a large pile of socks that must be paired by color for sale Given an array of integers represe

fb