Learned or Solved Something Today?

Dump it here! Let others learn from you

Showing 20 of 262 from page 1

bytebot posted in #codingchallenge #cpp #array

Remove Duplicates | Array | C++ Solution

Remove Duplicates, is a Array related problem and in this post we will see how we can solve this challenge in C++ given a array with one key which has repeating occurrences .Given that key remove all

bytebot posted in #codingchallenge #cpp #array

Check Board Game Moves | Array | C++ Solution

Check Board Game Moves, is a Array related problem and in this post we will see how we can solve this challenge in C++ NOTE DOESN T WORK given an array of +ve moves for a board game ,give min no. of

bytebot posted in #codingchallenge #cpp #array

Spiral Matrix Print Kth | Array | C++ Solution

Spiral Matrix Print Kth, is a Array related problem and in this post we will see how we can solve this challenge in C++ Given a matrix of nXm and k .Print the kth element Please check the main.cpp sn

bytebot posted in #codingchallenge #cpp #array

Spiral Matrix | Array | C++ Solution

Spiral Matrix, is a Array related problem and in this post we will see how we can solve this challenge in C++ Print a given n X n 2D matrix in Spiral form Please check the main.cpp snippet for the so

bytebot posted in #codingchallenge #cpp #array

Sort 4 Different Colours | Array | C++ Solution

Sort 4 Different Colours, is a Array related problem and in this post we will see how we can solve this challenge in C++ Given four different colours ,arrange them such that same colours exist togeth

bytebot posted in #codingchallenge #cpp #array

Search Rotated Sorted Array | Array | C++ Solution

Search Rotated Sorted Array, is a Array related problem and in this post we will see how we can solve this challenge in C++ Search an element in a sorted array which has been rotated at some pivot un

bytebot posted in #codingchallenge #cpp #array

Rotate Matrix 90 Degrees | Array | C++ Solution

Rotate Matrix 90 Degrees, is a Array related problem and in this post we will see how we can solve this challenge in C++ Given a Matrix of NXN .Rotate it by 90 degrees Please check the main.cpp snipp

bytebot posted in #codingchallenge #cpp #array

Rotate Array OPTIMISED | Array | C++ Solution

Rotate Array OPTIMISED, is a Array related problem and in this post we will see how we can solve this challenge in C++ Rotates the array by r Please check the main.cpp snippet for the solution. This

bytebot posted in #codingchallenge #cpp #array

Rotate Array Juggling | Array | C++ Solution

Rotate Array Juggling, is a Array related problem and in this post we will see how we can solve this challenge in C++ Rotates the array elements clockwise by r using juggling algorithm Please check t

bytebot posted in #codingchallenge #cpp #array

Rotate Array Block Swap Method | Array | C++ Solution

Rotate Array Block Swap Method, is a Array related problem and in this post we will see how we can solve this challenge in C++ Rotates the array elements by r rotate the array elements using block sw

bytebot posted in #codingchallenge #cpp #array

Rotate Array | Array | C++ Solution

Rotate Array, is a Array related problem and in this post we will see how we can solve this challenge in C++ Rotates the array elements clockwise by r Please check the main.cpp snippet for the soluti

bytebot posted in #codingchallenge #cpp #array

Reverse Array Recursion | Array | C++ Solution

Reverse Array Recursion, is a Array related problem and in this post we will see how we can solve this challenge in C++ Reverse an array using recursion Reverses any data type ,start with the beginni

bytebot posted in #codingchallenge #cpp #array

Reverse Array Iterative | Array | C++ Solution

Reverse Array Iterative, is a Array related problem and in this post we will see how we can solve this challenge in C++ Reverse an array using iterative method Reverses any data type ,start with the

bytebot posted in #codingchallenge #cpp #array

Reverse | Array | C++ Solution

Reverse, is a Array related problem and in this post we will see how we can solve this challenge in C++ Please check the main.cpp snippet for the solution. This solution originally posted at Github b

bytebot posted in #codingchallenge #cpp #array

Prime Range Sieve Of Erosthenesis | Array | C++ Solution

Prime Range Sieve Of Erosthenesis, is a Array related problem and in this post we will see how we can solve this challenge in C++ Given n find out the prime numbers lying between 1 to n Please check

bytebot posted in #codingchallenge #cpp #array

Position Pivot | Array | C++ Solution

Position Pivot, is a Array related problem and in this post we will see how we can solve this challenge in C++ Given a pivot position ,arrange the elements such that on left side elements are lesser

bytebot posted in #codingchallenge #cpp #array

Pascal Triangle | Array | C++ Solution

Pascal Triangle, is a Array related problem and in this post we will see how we can solve this challenge in C++ Given n .Print Pascal s triangle Please check the main.cpp snippet for the solution. Th

bytebot posted in #codingchallenge #cpp #array

Number Occurring Odd Times | Array | C++ Solution

Number Occurring Odd Times, is a Array related problem and in this post we will see how we can solve this challenge in C++ finds the number occurring odd number of times There is only one number occu

bytebot posted in #codingchallenge #cpp #array

Multiply Two Numbers | Array | C++ Solution

Multiply Two Numbers, is a Array related problem and in this post we will see how we can solve this challenge in C++ Multiply two numbers using arrays Please check the main.cpp snippet for the soluti

bytebot posted in #codingchallenge #cpp #array

Move Even Odd Numbers | Array | C++ Solution

Move Even Odd Numbers, is a Array related problem and in this post we will see how we can solve this challenge in C++ given an array.Arrange the elements st even nos. are at the begining and the odd

fb