├── .DS_Store ├── .gitignore ├── 10x_engg_bootcamp ├── .DS_Store ├── DP_Series │ ├── input.txt │ ├── lps │ ├── lps.cpp │ ├── mcm │ ├── mcm.cpp │ ├── output.txt │ ├── slimes │ └── slimes.cpp ├── Graph_series │ ├── If_path_exist.cpp │ ├── Tree_Cutting │ ├── Tree_Cutting.cpp │ ├── adjacency_list │ ├── adjacency_list.cpp │ ├── adjacency_matrix.cpp │ ├── all_path.cpp │ ├── cloneAGraph.cpp │ ├── connected_components │ ├── connected_components.cpp │ ├── graph_quick_impl │ ├── graph_quick_impl.cpp │ ├── incidence_matrix │ ├── incidence_matrix.cpp │ ├── input.txt │ ├── output.txt │ ├── sssp │ └── sssp.cpp └── Tree_Series │ ├── binary_Tree │ ├── binary_Tree.cpp │ ├── input.txt │ ├── longest_path │ ├── longest_path.cpp │ ├── output.txt │ └── tempCodeRunnerFile.cpp ├── AFLV-CP-Course ├── .DS_Store ├── Data-Structures │ ├── Backspace │ ├── Backspace.cpp │ ├── Simple_Addition │ ├── Simple_Addition.cpp │ ├── input.txt │ └── output.txt └── Warmup │ ├── A_Different_Problem │ ├── A_Different_Problem.cpp │ ├── Bus_Numbers │ ├── Bus_Numbers.cpp │ ├── Coldputer_Science │ ├── Coldputer_Science.cpp │ ├── Mandelbrot │ ├── Mandelbrot.cpp │ ├── Mandelbrot.java │ ├── Path_Tracing │ ├── Path_Tracing.cpp │ ├── Server │ ├── Server.cpp │ ├── input.txt │ └── output.txt ├── AdaLab ├── .DS_Store ├── ActivitySelection.cpp ├── DynamicProgramming │ ├── Binomial.cpp │ ├── Knapsack.cpp │ ├── LongestCommonSubsequence.cpp │ ├── MatrixMultiply.cpp │ ├── OBST.cpp │ ├── Strassen.cpp │ └── run ├── Graph │ ├── BellmanFord.cpp │ ├── Dijkstra.cpp │ ├── Floyyd.cpp │ ├── Kruskals.cpp │ ├── Prims.cpp │ └── run ├── Greedy │ ├── AcitivitySelection.cpp │ ├── Huffman.cpp │ ├── JobSchedule.cpp │ ├── KnapsackGreedy.cpp │ └── run ├── Searching │ ├── BinarySearch.cpp │ ├── LinearSearch.cpp │ ├── TernarySearch.cpp │ └── run ├── Sorting │ ├── BubbleSort.cpp │ ├── HeapSort.cpp │ ├── InsertionSort.cpp │ ├── MergeSort.cpp │ ├── QuickSort.cpp │ ├── SelectionSort.cpp │ └── run ├── StringAlgo │ ├── KMP.cpp │ ├── Naive.cpp │ ├── RabinKarp.cpp │ └── run └── run ├── Algo++ ├── .DS_Store ├── Arrays │ ├── ChewbaccaAndNumber.cpp │ ├── FactoSum.cpp │ ├── FormTheBiggestNumber.cpp │ ├── HelpRamu.cpp │ ├── IfTwoStringsArepermutation.cpp │ ├── ImageRotation.cpp │ ├── MaxCircularSum.cpp │ ├── MaximumSubarraySumKadane.cpp │ ├── MaximumSumSubarrayUsingPrecomputation.cpp │ ├── RainwaterCollection.cpp │ ├── RotateCharacterArray.cpp │ ├── SanjayNewJob.cpp │ ├── StringTokenizer1.cpp │ ├── StringTokenizer2.cpp │ ├── TwoUniqueAndAllOthersRepeated.cpp │ └── run ├── Heaps │ ├── RunningMedian.cpp │ └── run ├── LinkedList │ ├── DoublyLinkedList.cpp │ ├── FlattenAList.cpp │ ├── LinkedList.cpp │ ├── SkipList.cpp │ └── run ├── Queue │ ├── queue.cpp │ ├── queuestl.cpp │ └── template_queue.cpp ├── Recursion │ ├── ArrayIsSorted.cpp │ ├── BubbleSort.cpp │ ├── CodesOfString.cpp │ ├── CountBinaryStringsWithNoConsecutiveOne.cpp │ ├── FriendsPairing.cpp │ ├── FunkyChessboard.cpp │ ├── GenerateParenthesis.cpp │ ├── PalindromePartition.cpp │ ├── Tiling.cpp │ ├── TowerOfHanoi.cpp │ ├── replacepi.cpp │ ├── run │ └── twozerofoureight.cpp ├── SlidingWindow │ ├── SmallestWindowWithAllCharacters.cpp │ └── run ├── SortingAndSearching │ ├── BinarySearch.cpp │ ├── CountingSort.cpp │ ├── KthRoot.cpp │ ├── LinearSearch.cpp │ ├── MatrixSearch.cpp │ ├── MedianOfTwoSortedArrays.cpp │ ├── PivotOfSortedRotatedArray.cpp │ ├── SquareRoot.cpp │ ├── UpperAndLowerBound.cpp │ └── run ├── Stack │ ├── Stack.cpp │ ├── StackSTL.cpp │ ├── StackUsingPriorityQueue.cpp │ ├── StackUsingVector.cpp │ ├── StackWithMiddleOperation.cpp │ ├── StockSpan.cpp │ ├── TwoStacksUsingArray.cpp │ └── run ├── Trees │ ├── BST.cpp │ ├── BT.cpp │ └── run └── run ├── C++Beginners ├── .DS_Store ├── Arrays │ ├── BirthdayParadox │ ├── BirthdayParadox.cpp │ ├── generatingSubarrays │ ├── generatingSubarrays.cpp │ ├── scanningTillEndOfFile │ ├── scanningTillEndOfFile.cpp │ └── shortestRoadTrip.cpp ├── Fundamentals1 │ ├── AverageOfFiveNumbers │ ├── AverageOfFiveNumbers.cpp │ ├── Loop.cpp │ ├── Pattern1.cpp │ ├── SimpleInterest │ ├── SimpleInterest.cpp │ ├── checkfibonacci.cpp │ ├── pointer3.cpp │ ├── pointer4.cpp │ ├── pointers.cpp │ ├── pointers2.cpp │ ├── references.cpp │ └── run └── test.cpp ├── CB ├── .DS_Store ├── AlgoSummerJune19 │ ├── .DS_Store │ ├── Session1 │ │ ├── CountBinary.cpp │ │ ├── DNF.cpp │ │ ├── PythagoreanTriplet.cpp │ │ ├── RangeAddition.cpp │ │ ├── Staircase.cpp │ │ ├── factorial.cpp │ │ ├── fibonacci.cpp │ │ ├── friendPairing.cpp │ │ └── run │ ├── Session10 │ │ ├── BT.cpp │ │ └── run │ ├── Session11 │ │ ├── AgressiveCows.cpp │ │ ├── PrimeSieve.cpp │ │ ├── Vectors.cpp │ │ └── run │ ├── Session12 │ │ ├── BST.cpp │ │ └── run │ ├── Session13 │ │ ├── HashTable.cpp │ │ ├── Trie.cpp │ │ ├── mapstl.cpp │ │ └── run │ ├── Session14 │ │ ├── Graphs.cpp │ │ ├── Prims.cpp │ │ ├── Rats.cpp │ │ ├── a.out │ │ └── run │ ├── Session2 │ │ ├── CodesOfString.cpp │ │ ├── Lexicographical.cpp │ │ ├── Subsequence.cpp │ │ ├── SubsequenceAscii.cpp │ │ ├── mazepath.cpp │ │ ├── printMazePath.cpp │ │ └── run │ ├── Session3 │ │ ├── Nqueen.cpp │ │ ├── Permutation.cpp │ │ ├── PermutationRepeat.cpp │ │ ├── RatInAMaze.cpp │ │ └── run │ ├── Session4 │ │ ├── KnightsTour.cpp │ │ ├── MergeSort.cpp │ │ ├── MergeTwoSortedArrays.cpp │ │ ├── Nknights.cpp │ │ ├── Quicksort.cpp │ │ └── run │ ├── Session5 │ │ ├── LinkedList.cpp │ │ └── run │ ├── Session6 │ │ ├── genStack.cpp │ │ ├── isBalanced.cpp │ │ ├── queue.cpp │ │ ├── stack.cpp │ │ ├── stackSTL.cpp │ │ └── stockSpan.cpp │ ├── Session7 │ │ ├── FibDP.cpp │ │ ├── LIS.cpp │ │ ├── MinCoinChange.cpp │ │ ├── MinStepsToOne.cpp │ │ └── run │ ├── Session8 │ │ ├── 4KeysKeyboard.cpp │ │ ├── Knapsack.cpp │ │ ├── LCS.cpp │ │ ├── MaxSumSubarray.cpp │ │ └── run │ └── Session9 │ │ ├── ArithmeticSlices.cpp │ │ ├── LongestPalindromicSubsequence.cpp │ │ ├── MaximumSumRectangle.cpp │ │ ├── PaintHouse2.cpp │ │ ├── UniquePath2.cpp │ │ └── run ├── ChitkaraWorkshop │ ├── FibDp.cpp │ ├── FriendsPairingDP.cpp │ ├── MinStepsToOne.cpp │ ├── Nqueen.cpp │ ├── RatInAMaze.cpp │ ├── ReplacePi.cpp │ ├── Session5 │ ├── Subsequence.cpp │ ├── a.out │ ├── nqueen_fast.cpp │ └── run ├── LPU-Workshop │ ├── DNF.cpp │ ├── run │ └── subsequence.cpp ├── LPU │ ├── .DS_Store │ ├── .ipynb_checkpoints │ │ └── RapGenerator-checkpoint.ipynb │ ├── RapGenerator.ipynb │ ├── Session1 │ │ ├── CodesOfString.cpp │ │ ├── FriendsPairing.cpp │ │ ├── Lexicographical.cpp │ │ ├── NoConsecutiveOne.cpp │ │ ├── fibonacci.cpp │ │ ├── replacepi.cpp │ │ ├── run │ │ ├── subsequence.cpp │ │ └── subsequenceascii.cpp │ ├── Session10 │ │ ├── AllAnagramSubstring.cpp │ │ ├── IsAnagram.cpp │ │ ├── PythagoreanTriptlet.cpp │ │ ├── Rats.cpp │ │ ├── dnf.cpp │ │ ├── run │ │ └── trie.cpp │ ├── Session11 │ │ ├── advancedGcd.cpp │ │ ├── count3divisors.cpp │ │ ├── cubeFreeNumbers.cpp │ │ ├── cubefree.java │ │ ├── divisorofFactorial.java │ │ ├── euclid.cpp │ │ ├── extendedEuclid.cpp │ │ ├── nFactorialDivisors.cpp │ │ ├── run │ │ └── sieve.cpp │ ├── Session12 │ │ ├── CountSetBits.cpp │ │ ├── EulerTotient.cpp │ │ ├── ModularExponentiation.cpp │ │ └── run │ ├── Session13 │ │ ├── AdjacencyListGraphs.cpp │ │ ├── data.txt │ │ └── run │ ├── Session14 │ │ ├── FloodFill.cpp │ │ ├── Kruskals.cpp │ │ ├── Prims.cpp │ │ ├── floodFill │ │ │ ├── apple.txt │ │ │ ├── floodFill.cpp │ │ │ ├── run │ │ │ └── square.txt │ │ └── run │ ├── Session2 │ │ ├── CountMazePath.cpp │ │ ├── CountMazePathDiagonal.cpp │ │ ├── HostelVisit.cpp │ │ ├── LetterCasePermutation.cpp │ │ ├── PrintMazePath.cpp │ │ ├── RatMazeCodechef.cpp │ │ ├── StaircaseRecursion.cpp │ │ ├── run │ │ └── targetsubset.java │ ├── Session3 │ │ ├── Aquaman.cpp │ │ ├── KnightsTour.cpp │ │ ├── MatrixChainMultiplication.cpp │ │ ├── Nqueen.cpp │ │ ├── PermutationRepeat.cpp │ │ ├── Permutations.cpp │ │ ├── run │ │ └── subset.java │ ├── Session4 │ │ ├── AggressiveCows.cpp │ │ ├── Cashflow.cpp │ │ ├── LargestPermutation.cpp │ │ ├── SquareRootUsingBinarySearch.cpp │ │ ├── WinningCBScholarship.cpp │ │ └── run │ ├── Session5 │ │ ├── FractionalKnapsack.cpp │ │ ├── GreedyGame.cpp │ │ ├── HuffmanEncoder.java │ │ ├── MaximumCircles.cpp │ │ └── run │ ├── Session6 │ │ ├── FriendsPairing.cpp │ │ ├── KorderedLCS.cpp │ │ ├── LCS.cpp │ │ ├── LCSForThreeStrings.cpp │ │ ├── LongestIncreasingSubsequence.cpp │ │ ├── LongestSquareSubmatrixWithAllOne.cpp │ │ ├── LongestSquareWithAllOneTopDown.cpp │ │ ├── fibonacciDP.cpp │ │ └── run │ ├── Session7 │ │ ├── EggDropping.cpp │ │ ├── LongestBiotonicSubsequence.cpp │ │ ├── LongestPalindromicSubsequence.cpp │ │ ├── LongestRepeatingSubsequence.cpp │ │ └── run │ ├── Session8 │ │ ├── CountMazePath.cpp │ │ ├── EditDistance.cpp │ │ ├── Knapsack.cpp │ │ ├── MinCostPath.cpp │ │ ├── RopeCutMAxProduct.cpp │ │ ├── TargetSubset.cpp │ │ ├── WordBreak.cpp │ │ └── run │ ├── Session9 │ │ ├── KadaneMaximumSumSubarray.cpp │ │ ├── LexicoLarger.java │ │ ├── MaximumSumRectangle.cpp │ │ ├── mcm.cpp │ │ ├── mcmdp.cpp │ │ ├── mixtures.cpp │ │ └── run │ ├── data.txt │ └── test.mp3 ├── LaunchpadAugust │ ├── .DS_Store │ ├── Lecture-07 │ │ ├── 2d-character-array.cpp │ │ ├── bubble_sort.cpp │ │ ├── factorial-recursion.cpp │ │ ├── fibonacci-recursion.cpp │ │ ├── power.cpp │ │ ├── printdecincskip.cpp │ │ ├── printdecreasing.cpp │ │ ├── printincreasing.cpp │ │ ├── run │ │ ├── staircase.cpp │ │ ├── story.txt │ │ ├── two-d-array.cpp │ │ └── waveprint.cpp │ ├── Lecture-08 │ │ ├── 2darrayfunction.cpp │ │ ├── countmazepath.cpp │ │ ├── countmazepathdiag.cpp │ │ ├── printmazepath.cpp │ │ ├── printmazepathwithdiag.cpp │ │ ├── printnumbersdigitincreasing.cpp │ │ ├── run │ │ ├── subsequence.cpp │ │ └── subsequenceascii.cpp │ └── mapstl.cpp │ │ ├── mapstl.cpp │ │ ├── orderedmapstl.cpp │ │ └── run ├── OnlineCourseCodes │ ├── HashMap │ │ ├── CheckIfSubarrayWithSumZero.cpp │ │ ├── LongestConsecutiveSubsequence.cpp │ │ ├── LongestSubarrayWithSum0.cpp │ │ ├── LongestSubarrayWithSumK.cpp │ │ ├── MinWindowSubstring.cpp │ │ ├── a.out │ │ └── run │ ├── HeapsC++ │ │ ├── Heaps.cpp │ │ ├── JoinTheRopes.cpp │ │ ├── MergeKSortedArrays.cpp │ │ └── run │ ├── QueuesC++ │ │ ├── FirstNonRepeatingCharacterInAStream.cpp │ │ ├── Implementation.cpp │ │ ├── LLImplementation.cpp │ │ ├── MaxElementInWindowsOfSizeK.cpp │ │ └── run │ ├── Trees │ │ ├── BT.cpp │ │ ├── BT2LL.cpp │ │ ├── LCA.cpp │ │ ├── MaxSumPathNodeToNode.cpp │ │ ├── RightView.cpp │ │ ├── a.out │ │ └── run │ ├── Tries │ │ ├── MaxXorPair.cpp │ │ ├── TriesImplementation.cpp │ │ └── run │ └── TwoDArrays │ │ ├── MaxSumSubmatrixInRowColSortedMatrix.cpp │ │ ├── SearchInRowColWiseSortedMatrix.cpp │ │ ├── SumOfAllSubmatricesFromAMatrix.cpp │ │ └── run ├── ShivNadarUniversity │ ├── Factorial.cpp │ ├── FibDP.cpp │ ├── FriendPairing.cpp │ ├── MinStepsToOne.cpp │ ├── Nqueen.cpp │ ├── PermutationWithRepitition.cpp │ ├── Permutations.cpp │ ├── PrintDecreasing.cpp │ ├── PrintIncreasing.cpp │ ├── RatInAMaze.cpp │ ├── ReplacePI.cpp │ ├── Subsequence.cpp │ ├── a.out │ └── run └── VITBhopalWorkshop │ ├── Factorial.cpp │ ├── FriendsPairing.cpp │ ├── Lexicographical.cpp │ ├── Mazepath.cpp │ ├── NoOfBinaryStrings.cpp │ ├── Nqueen.cpp │ ├── Permutations.cpp │ ├── RatInMaze.cpp │ ├── run │ └── subsequence.cpp ├── CSES ├── Array_Description ├── Array_Description.cpp ├── Book_Shop ├── Book_Shop.cpp ├── Coin_Combination_1_DP ├── Coin_Combination_1_DP.cpp ├── Coin_Combination_2._DP ├── Coin_Combination_2._DP.cpp ├── Dice_Combination_DP ├── Dice_Combination_DP.cpp ├── Edit_Distance_DP ├── Edit_Distance_DP.cpp ├── Grid_Paths ├── Grid_Paths.cpp ├── LIS_DP ├── LIS_DP.cpp ├── Minimizing_Coins_DP ├── Minimizing_Coins_DP.cpp ├── Money_Sums ├── Money_Sums.cpp ├── Projects_Dp ├── Projects_Dp.cpp ├── Rectangle_Cutting_Dp ├── Rectangle_Cutting_Dp.cpp ├── Removal_Game ├── Removal_Game.cpp ├── Removing_Digits_DP ├── Removing_Digits_DP.cpp ├── Two_Sets_2 ├── Two_Sets_2.cpp ├── input.txt ├── intro_dp_graph.cpp └── output.txt ├── CW_Lectures └── CustomComparator │ ├── demo.cpp │ ├── demo1.cpp │ ├── demopriorityqueue.cpp │ └── run ├── CodeBlockZen ├── .DS_Store ├── Arrays │ └── DuplicateInAnArray.cpp ├── Loops │ ├── ReverseANumber.cpp │ ├── SquareRoot.cpp │ └── TermaOfAp.cpp ├── Patterns │ ├── .DS_Store │ ├── AlphaPattern.cpp │ ├── BinaryPattern.cpp │ ├── DiamondOfNumbers.cpp │ ├── DiamondOfStars.cpp │ ├── GakaxyOfStars.cpp │ ├── GiveMeTriangle.cpp │ ├── InterestingAlphabets.cpp │ ├── MirrorImageOfTriangle.cpp │ ├── NewPattern.cpp │ ├── NumberPattern.cpp │ ├── NumberX.cpp │ ├── Pattern_ify.cpp │ ├── RepeatTriangle.cpp │ ├── RepeatingNumbers.cpp │ ├── ReversingSeriesPattern.cpp │ ├── Starfield.cpp │ └── run └── run ├── CodeTribe ├── .DS_Store ├── CppMarathonClass │ ├── commands.md │ ├── comments.cpp │ ├── compiler_optimisation.cpp │ ├── conditionals │ ├── conditionals.cpp │ ├── datatype_demo │ ├── datatype_demo.cpp │ ├── helloworld.cpp │ ├── helloworld.o │ ├── helloworld.s │ ├── helloworld_preprocessed.cpp │ ├── helloworld_preprocessed.s │ ├── loops_demo │ ├── loops_demo.cpp │ ├── operator │ ├── operator.cpp │ ├── pythagoreantriplet │ ├── pythagoreantriplet.cpp │ ├── run │ ├── run1 │ ├── run2 │ ├── strings_demo │ ├── strings_demo.cpp │ └── tempCodeRunnerFile.cpp ├── DPMicrocourseSep │ ├── fib │ ├── fib.cpp │ ├── output.txt │ ├── reducetoone │ ├── reducetoone.cpp │ ├── royandcoinboxes.cpp │ ├── tempCodeRunnerFile.cpp │ ├── twokeykeyboard │ └── twokeykeyboard.cpp ├── DynamicProgrammingCodingRounds │ ├── mcoins │ ├── mcoins.cpp │ ├── vacation │ └── vacation.cpp ├── NumberTheorySept │ ├── cube_free │ ├── cube_free.cpp │ ├── euclid │ ├── euclid.cpp │ ├── extended_euclid │ ├── extended_euclid.cpp │ ├── input.txt │ ├── moduloinv.cpp │ ├── output.txt │ ├── prime_sieve │ └── prime_sieve.cpp └── Recorded │ └── DPSeries │ ├── catalan │ ├── catalan.cpp │ ├── fib │ ├── fib.cpp │ ├── input.txt │ ├── knapsack1 │ ├── knapsack1.cpp │ ├── lcs │ ├── lcs.cpp │ ├── lis │ ├── lis.cpp │ ├── mincoinchange │ ├── mincoinchange.cpp │ ├── output.txt │ ├── rodcut │ ├── rodcut.cpp │ ├── target_sum_subset │ └── target_sum_subset.cpp ├── Codechef ├── .DS_Store ├── ACM2018 │ ├── ReductionGame.cpp │ └── run ├── COOKOFF │ ├── OCT18 │ │ ├── BinaryNim2.cpp │ │ ├── WaterPumping.cpp │ │ └── run │ └── SEP18 │ │ ├── ATM.cpp │ │ └── Permutation.java ├── Easy │ ├── CielAndReceipt.cpp │ ├── PayingUp.cpp │ └── run ├── LONG │ ├── OCT18 │ │ ├── Appy.cpp │ │ ├── Bricks.cpp │ │ ├── Bricks1.cpp │ │ ├── ByteToBit.cpp │ │ ├── ChefAndServes.cpp │ │ ├── HasanAndTrip.cpp │ │ ├── MindSum.cpp │ │ ├── chefandcircles.cpp │ │ ├── chefandsurprisechess.cpp │ │ └── run │ └── OCT19 │ │ ├── OperationsOnMatrix.cpp │ │ └── PhonePrices.cpp ├── LUNCHTIME │ ├── SEPT18 │ │ ├── ChefRestraunt.cpp │ │ ├── JudgingDelay.cpp │ │ ├── OppositeCities.cpp │ │ ├── matchstream.java │ │ └── run │ └── oCT18 │ │ ├── ColorTheGrid.cpp │ │ ├── ROBOAGAIN.cpp │ │ ├── niceness.cpp │ │ ├── run │ │ └── wierdQues.cpp ├── NumberTheory │ ├── run │ └── threedif.cpp ├── Practice │ └── largefibonacci.cpp └── SNACKDOWN │ ├── BuddyNim.cpp │ ├── ChefAndCardTrick.cpp │ ├── ChefAndPeriodicSeuqnce.cpp │ ├── ChefAndSemiPrimes.cpp │ ├── ChefAndStrangeAddition.cpp │ ├── ChefLandAndAverageDistance.cpp │ ├── GraphOnArray.cpp │ ├── GraphOnArray.java │ ├── GraphOnArray1.cpp │ ├── QualifyingToPreElimination.cpp │ ├── chefandtyping.cpp │ └── run ├── Codeforces ├── .DS_Store ├── Bitmanipulation │ ├── Bits.cpp │ ├── LuckyNumber.cpp │ └── run ├── FromStoT.cpp ├── Ladder3-A2oj │ ├── AmusingJoke.cpp │ ├── Array.cpp │ ├── ChoosingTeams.cpp │ ├── Drinks.cpp │ ├── NearlyLuckyNumber.cpp │ ├── WayTooLongWords.cpp │ └── run ├── RemoveAProgression.cpp ├── YetAnotherCrosses.cpp ├── run └── watermelon.cpp ├── CommonLounge ├── LeadGameCodechef.cpp ├── MatchedBracketsCodeChef.cpp ├── Traithalon.cpp ├── VOTERSLISTCodeChef.cpp ├── Variation.cpp ├── VideoGameCodeChef.cpp ├── Wormholes.cpp ├── run └── test.cpp ├── CompetitivePractice └── Maths │ ├── input.txt │ ├── output.txt │ ├── test │ └── test.cpp ├── CompetitiveProgramming ├── .DS_Store ├── AtcoderDPContest │ ├── A │ ├── A.cpp │ ├── B │ ├── B.cpp │ ├── C │ ├── C.cpp │ ├── D │ ├── D.cpp │ ├── E │ ├── E.cpp │ ├── F │ ├── F.cpp │ ├── G │ ├── G.cpp │ ├── H │ ├── H.cpp │ ├── I │ ├── I.cpp │ ├── J │ ├── J.cpp │ ├── K │ ├── K.cpp │ ├── M │ ├── M.cpp │ ├── N │ ├── N.cpp │ ├── O │ ├── O.cpp │ ├── P │ ├── P.cpp │ ├── Q │ ├── Q.cpp │ ├── R │ ├── R.cpp │ ├── S │ ├── S.cpp │ ├── T │ ├── T.cpp │ ├── U │ ├── U.cpp │ ├── V │ ├── V.cpp │ ├── W │ ├── W.cpp │ ├── X │ ├── X.cpp │ ├── Y │ ├── Y.cpp │ ├── Z │ ├── Z.cpp │ ├── input.txt │ ├── l │ ├── l.cpp │ ├── output.txt │ └── run ├── BIT │ ├── bit.cpp │ ├── coderrating │ └── coderrating.cpp ├── Backtracking │ ├── Aquaman.cpp │ ├── CodesOfString.cpp │ ├── HelloString.cpp │ ├── KeyPadComb.cpp │ ├── KnightsTour.cpp │ ├── LexicoReverse.cpp │ ├── Lexicographical.cpp │ ├── LexicographicalLarger.cpp │ ├── NKNights │ ├── NKNights.cpp │ ├── Replacepi.cpp │ ├── TargetSubset.cpp │ ├── TowerOfHanoi.cpp │ ├── TwinsINAString.cpp │ ├── nknight.cpp │ ├── nqueen.cpp │ ├── ratinamaze.cpp │ └── run ├── BigInteger │ ├── BigFactorial │ ├── BigFactorial.cpp │ ├── Julka │ ├── Julka.cpp │ ├── input.txt │ └── output.txt ├── BinarySearch │ ├── ABCDEF.cpp │ ├── AgressiveCows.java │ ├── BookAllocation.cpp │ ├── Get_Together │ ├── Get_Together.class │ ├── Get_Together.cpp │ ├── Get_Together.java │ ├── IntroToBSOnRealNumber.py │ ├── Kth_Number_In_Union_Of_Segments │ ├── Kth_Number_In_Union_Of_Segments.class │ ├── Kth_Number_In_Union_Of_Segments.cpp │ ├── Kth_Number_In_Union_Of_Segments.java │ ├── Maximum_Average │ ├── Maximum_Average.cpp │ ├── Minimum_maximum_on_a_path │ ├── Minimum_maximum_on_a_path.cpp │ ├── Not_A_Triangle │ ├── Not_A_Triangle.cpp │ ├── PainterPartitionProblem.py │ ├── Pair_Of_Topics │ ├── Pair_Of_Topics.cpp │ ├── Parata.py │ ├── PetyaAndVasya.py │ ├── SQRT.py │ ├── SQRT_Using_BS.py │ ├── SmallestGoodBase.cpp │ ├── Splitting_An_Array │ ├── Splitting_An_Array.class │ ├── Splitting_An_Array.cpp │ ├── SquareRoot.cpp │ ├── Subsums │ ├── Subsums.cpp │ ├── TwoDpeakElement.py │ ├── WinningCBScholarship.cpp │ ├── adjusting_rectangles.py │ ├── input.txt │ ├── median_of_sorted_lists.py │ ├── output.txt │ ├── printing_copies.py │ └── run ├── BitWise │ ├── ClearIthBitToZero.cpp │ ├── CountSetBits.cpp │ ├── CountSetBits2.cpp │ ├── GetIthBit.cpp │ ├── IncredibleHulk.cpp │ ├── NoOfBitsToChangeAtoB.cpp │ ├── Oddtopic │ ├── Oddtopic.cpp │ ├── PlayingWithBits.cpp │ ├── SetIthBitTo1.cpp │ ├── Subsequences.cpp │ ├── TavasAndSaddas.cpp │ ├── UniqueNumber1.cpp │ ├── UniqueNumber3.cpp │ ├── UniqueNumberTwo.cpp │ ├── XORProfit.cpp │ ├── XorSwapping.cpp │ ├── input.txt │ ├── output.txt │ └── run ├── CBIntroduction │ ├── FastPowerUsingBitMasking.cpp │ ├── FastPowerUsingRecursion.cpp │ └── run ├── CSOD.cpp ├── Combinatorics │ ├── input.txt │ ├── kspecialcells │ ├── kspecialcells.cpp │ ├── output.txt │ └── tempCodeRunnerFile.cpp ├── ComputationalGeometry │ ├── AreaOfPolygon.cpp │ └── JarvisScanConvexHull.cpp ├── DSU │ ├── BiPartite │ ├── BiPartite.cpp │ ├── Cutting_A_Graph.cpp │ ├── Cutting_a_Graph │ ├── DSU_By_Size │ ├── DSU_With_min_max_Size.cpp │ ├── Disjoint_Set_Union │ ├── Disjoint_Set_Union.cpp │ ├── Monkeys │ ├── Monkeys.cpp │ ├── People_Are_Leaving │ ├── People_Are_Leaving.cpp │ ├── Secret_Password │ ├── Secret_Password.cpp │ ├── input.txt │ └── output.txt ├── Difference Arrays │ ├── Constant_Palindrome_Sum │ ├── Constant_Palindrome_Sum.cpp │ ├── Encrypting_Messages │ ├── Encrypting_Messages.cpp │ ├── Karen_And_Coffee │ ├── Karen_And_Coffee.cpp │ ├── Little_Girl_And_Maximum_Sum.cpp │ ├── input.txt │ └── output.txt ├── DivideAndConquer │ ├── AgressiveCowsSpoj.cpp │ ├── InversionCountSpoj.cpp │ └── run ├── DynamicProgramming │ ├── 0Nknapsack.cpp │ ├── AdjacentBitCount.cpp │ ├── AlyonaAndStrings │ ├── AlyonaAndStrings.cpp │ ├── BadLuckIsland.cpp │ ├── CellMitosis.cpp │ ├── ChatRoomCodeforces.cpp │ ├── ChefCollectCoins_BurstBallon.cpp │ ├── CoinChange.cpp │ ├── DungeonGame.cpp │ ├── EditDistance.cpp │ ├── FlowersCodeforces.cpp │ ├── GridProblem.cpp │ ├── JonSnowAndHisFavouriteNumber.cpp │ ├── K-orderedLCS.cpp │ ├── KBasedNumbers.cpp │ ├── Knapsack.cpp │ ├── Knapsack2.cpp │ ├── KnapsackSpaceOptimized.cpp │ ├── LongestIncreasingSubsequence.cpp │ ├── MinCoinChange.cpp │ ├── MinStepsToOne │ ├── MinStepsToOne.cpp │ ├── OneCount.cpp │ ├── OptimalGameStrategy.cpp │ ├── ReduceNumber.cpp │ ├── RobotsAndPath.cpp │ ├── RodCutting.cpp │ ├── RoyAndCoinBoxes.cpp │ ├── StockSelling.cpp │ ├── SumOfDigitSpoj.cpp │ ├── SuperUglyNumber.cpp │ ├── Tourist │ ├── Tourist.cpp │ ├── TouristSpoj.cpp │ ├── UnboundedKnapsack.cpp │ ├── WineProblem.cpp │ ├── a.out │ ├── buyandsellstocks.cpp │ ├── famtree.cpp │ ├── input.txt │ ├── longestpath.cpp │ ├── maximumsumrectangle.cpp │ ├── mcoins.cpp │ ├── mpilot.cpp │ ├── output.txt │ ├── primexor.cpp │ ├── royandcoingbox.cpp │ ├── run │ ├── sum_of_digits │ ├── sum_of_digits.cpp │ ├── sum_of_digits_spoj.cpp │ ├── travelingsalesman │ ├── travelingsalesman.cpp │ ├── tsp.cpp │ ├── vanya_and_gcd.cpp │ ├── vertexcover.cpp │ └── xorcicuit.cpp ├── FenwickTree │ ├── FenwickTree.cpp │ └── run ├── GameTHeory │ ├── CalculateGrundy.cpp │ ├── DigitSquareBoard.cpp │ ├── GameOfStonesHackerrank.cpp │ ├── GrundyDivision.cpp │ ├── MandMGameSpoj.cpp │ ├── TheGameSpojQCJ3.cpp │ └── run ├── Geometry │ └── GeometryTemplate.cpp ├── Graphs │ ├── AdjacencyList.cpp │ ├── AdjacencyListByMap.cpp │ ├── AdjacencyListRespresentation │ ├── AdjacencyListRespresentation.cpp │ ├── AppleColor.cpp │ ├── BellmanFord.cpp │ ├── BipartitieGraph │ ├── BipartitieGraph.cpp │ ├── BipartitieGraph.dSYM │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── Resources │ │ │ └── DWARF │ │ │ └── BipartitieGraph │ ├── CycleDetectionInUndirectedGraphBFS.cpp │ ├── CycleDetectionUsingDFS.cpp │ ├── FloodFill.cpp │ ├── GraphsWithDFS │ ├── GraphsWithDFS.cpp │ ├── JourneyToTheMoon.cpp │ ├── Kruskals.cpp │ ├── MinCostToReachbottom │ ├── MinCostToReachbottom.cpp │ ├── PermutationSwaps │ ├── PermutationSwaps.cpp │ ├── Prims.cpp │ ├── Red_Blue_Graph │ ├── Red_Blue_Graph.cpp │ ├── SingleSourceShortestPath │ ├── SingleSourceShortestPath.cpp │ ├── SnakeAndLadder.cpp │ ├── TopologicalSort.cpp │ ├── TopologicalSortBFS.cpp │ ├── a.out │ ├── apple.txt │ ├── graphadjlist.cpp │ ├── graphadjmap.cpp │ ├── input.txt │ ├── number_of_islands.cpp │ ├── output.txt │ ├── rotten_oranges.cpp │ ├── run │ └── tempCodeRunnerFile.cpp ├── Greedy │ ├── BiasedStandingSpoj.cpp │ ├── BusyManActivitySelectionSpoj.cpp │ ├── DeepakandJourney.java │ ├── DefenseofKingDomSpoj.cpp │ ├── MaximumCircles.cpp │ └── run ├── Hashing │ ├── Cascading_Style_Sheets │ ├── Cascading_Style_Sheets.cpp │ ├── Fencing │ ├── Fencing.cpp │ ├── GCD_VS_LCM │ ├── GCD_VS_LCM.cpp │ ├── Impressing_Chefina │ ├── Impressing_Chefina.cpp │ ├── SubarraysWithDistinctElement.cpp │ ├── input.txt │ └── output.txt ├── Heaps │ ├── HostelVisit.cpp │ ├── MOST_DIST.cpp │ ├── MergeKSortedArrays.cpp │ ├── TopKFrequentElements.cpp │ ├── most_distance_points.cpp │ ├── rmid2.cpp │ └── run ├── INCEPTUM │ ├── BarneyAndArrays.cpp │ ├── Panwar.cpp │ └── run ├── LargeFactorial.cpp ├── Maths │ ├── .DS_Store │ ├── Advanced │ │ ├── DivisibleSubarray.cpp │ │ ├── GraySimilarCode.cpp │ │ ├── Holispoj.cpp │ │ ├── NthEvenFibonacci.cpp │ │ ├── SEQspoj.cpp │ │ ├── fibonaccilogn.cpp │ │ ├── numbersummation.cpp │ │ ├── run │ │ └── test.cpp │ ├── Basic │ │ ├── BirthdayParadox.cpp │ │ ├── CatalanNumber.cpp │ │ ├── Factorial.cpp │ │ ├── FastPower.cpp │ │ ├── GliterringCaveSpoj.cpp │ │ ├── JulkaSpoj.java │ │ ├── LargestCoprimeDivisor.cpp │ │ ├── Lotto.cpp │ │ ├── PythagorianTriplet.cpp │ │ ├── TrailingZeros.cpp │ │ ├── figureful.cpp │ │ └── run │ └── Probability and combinatorics │ │ ├── BeautifulFactorialGame.cpp │ │ ├── FavDice.cpp │ │ └── primedivisibility.cpp ├── MyCompetitiveTemplate ├── NetworkFlow │ ├── EdmondKarpAlgorithm.cpp │ └── run ├── NumberTheoryAdvanced │ ├── CheckPrime.cpp │ ├── LightsNewCar.cpp │ ├── ModularExponentiation.cpp │ ├── ModularExponentiationIterative.cpp │ ├── PrateekLovesCandy.cpp │ ├── PrimeFactorization.cpp │ └── run ├── NumberTheoryBasic │ ├── AdvancedGCD.cpp │ ├── AtcoderDPContest │ ├── CubeFreeNumber.cpp │ ├── DivisibleSubarray.cpp │ ├── DivisorOfFactorial.cpp │ ├── EuclidGCD.cpp │ ├── ExtendedEuclid.cpp │ ├── Hardest_GCD_Problem.cpp │ ├── ModuloSum.cpp │ ├── MultiplicativeModuloInverse.cpp │ ├── NFactorful │ ├── NFactorful.cpp │ ├── PrimeSieve │ ├── PrimeSieve.cpp │ ├── PrimeVisit.cpp │ ├── SachinAndVarun.cpp │ ├── SegmentedSieve │ ├── SegmentedSieve.cpp │ ├── The_Football_Season │ ├── The_Football_Season.cpp │ ├── gcdqueries.cp │ ├── input.txt │ ├── output.txt │ ├── run │ └── t-prime.cpp ├── OnlineTutorial │ ├── BellmanFord.cpp │ ├── GraphOnArray.cpp │ ├── Kruskals.cpp │ ├── Prims.cpp │ ├── RabinCarp.cpp │ └── run ├── PolicyBasedDataStructure │ ├── InversionCount │ ├── InversionCount.cpp │ ├── Pair_Of_Topics.cpp │ ├── Stars.cpp │ ├── War_Games_2.cpp │ ├── astronimical_db.cpp │ ├── input.txt │ ├── output.txt │ └── test.cpp ├── STL │ ├── Average_Length │ ├── Average_Length.cpp │ ├── Random_Walk │ ├── Random_Walk.cpp │ ├── input.txt │ └── output.txt ├── SegmentTrees │ ├── FrequentSpoj.cpp │ ├── GSS1 │ ├── GSS1.cpp │ ├── HorribleQueries.cpp │ ├── KGSS_Maximum_Sum_Spoj.cpp │ ├── LIS │ ├── LIS.cpp │ ├── Max_Sum_Pair │ ├── Min_Segment_Tree │ ├── Min_Segment_Tree.cpp │ ├── Number_Of_Minimum_In_Segment │ ├── Number_Of_Minimum_In_Segment.cpp │ ├── SumOfSquaresSpoj.cpp │ ├── coordinatecompression.cpp │ ├── input.txt │ ├── output.txt │ ├── run │ ├── segment_With_max_sum │ ├── segment_With_max_sum.cpp │ ├── segment_tree │ └── segment_tree.cpp ├── Sparse Table │ ├── lca.cpp │ ├── range_min_query_sparse_table │ ├── range_min_query_sparse_table.cpp │ ├── range_sum_query_sparse_table │ └── range_sum_query_sparse_table.cpp ├── SquareRootDecomposition │ └── RangeSum.cpp ├── Stacks │ ├── BalancedParenthesis.py │ ├── Seinfeld │ ├── Seinfeld.cpp │ ├── input.txt │ ├── max_xor_secondary │ ├── max_xor_secondary.cpp │ └── output.txt ├── StringAlgorithms │ ├── KMP.cpp │ ├── Naive.cpp │ ├── RabinKarp.cpp │ ├── Shifted_Palindrome │ ├── Shifted_Palindrome.cpp │ ├── Taking_String_Input │ ├── Taking_String_Input.cpp │ ├── a.out │ ├── input.txt │ ├── output.txt │ └── run ├── TimeComplexity1.md ├── Trie │ ├── MaxXorPair.cpp │ ├── PersistenTrieXorQueries.cpp │ ├── Trie.cpp │ ├── Trie_With_Prefix_Print.cpp │ ├── run │ └── trieds.cpp ├── Two_Pointer │ ├── Vasya_And_String │ ├── Vasya_And_String.cpp │ ├── input.txt │ └── output.txt └── run ├── CompetitiveProgrammingTemplate.cpp ├── Dp_Lectures ├── .DS_Store ├── Part1 │ ├── Lecture │ │ ├── fibonacci_bottom_up │ │ ├── fibonacci_bottom_up.cpp │ │ ├── fibonacci_dp │ │ ├── fibonacci_dp.cpp │ │ ├── fibonacci_recursive │ │ ├── fibonacci_recursive.cpp │ │ ├── fibonacci_space │ │ ├── fibonacci_space.cpp │ │ ├── frog2 │ │ └── frog2.cpp │ ├── Live │ │ ├── house_robber.cpp │ │ ├── run │ │ ├── steps │ │ └── steps_t0_reduce_1.cpp │ └── Session │ │ ├── Longest_increasing_sequence.cpp │ │ ├── longest_common_subsequence.cpp │ │ ├── matrix_multiplication │ │ ├── matrix_multiplication.cpp │ │ ├── test │ │ └── triangle.cpp ├── Part2 │ ├── Live │ │ ├── dice_combination │ │ ├── dice_combination.cpp │ │ ├── lcs │ │ ├── lcs.cpp │ │ ├── mcoins │ │ ├── mcoins.cpp │ │ ├── minimizing_coins │ │ ├── minimizing_coins.cpp │ │ ├── number_of_dice_rolls_with_target_sum.cpp │ │ ├── removing_digits │ │ ├── removing_digits.cpp │ │ ├── run │ │ ├── test.cpp │ │ └── vacation.cpp │ └── Session │ │ ├── minimum_path_sum.cpp │ │ ├── partition_equal_subset_sum.cpp │ │ ├── unique_bst.cpp │ │ └── unique_path_2.cpp ├── Part3 │ ├── Live │ │ ├── adjacent_bit_count │ │ └── adjacent_bit_count.cpp │ └── Session │ │ └── regular_Expression_matching.cpp └── Part4 │ ├── acode │ ├── acode.cpp │ ├── coins │ ├── coins.cpp │ ├── deque │ ├── deque.cpp │ ├── knapsack │ ├── knapsack.cpp │ ├── knapsackmodified │ ├── knapsackmodified.cpp │ ├── mixtures │ ├── mixtures.cpp │ ├── roy_and_coin_boxes │ ├── roy_and_coin_boxes.cpp │ ├── roy_and_coin_boxes_2 │ ├── roy_and_coin_boxes_2.cpp │ ├── tempCodeRunnerFile │ ├── tempCodeRunnerFile.cpp │ ├── tourist │ └── tourist.cpp ├── DynamicProgramming ├── .DS_Store ├── CodeForces │ ├── CormenBestFriendOfMan.cpp │ ├── JonSnowAndHisFavouriteNumber.cpp │ ├── MashmokhAndACM.cpp │ └── run ├── GFG_LEET_IBIT │ ├── EggDropping.cpp │ ├── LongestPalindromicSubsequence.cpp │ ├── MinimimDeletionsToMakeAPalindrome.cpp │ ├── MinimumInsertionToFormPalindrome.cpp │ ├── MobileNumericKeypad.cpp │ ├── a.out │ └── run └── SPOJ │ ├── RectanglesPerimeter.cpp │ └── run ├── GeeksForGeeks ├── .DS_Store ├── Arrays │ ├── ChocolateDistribution.cpp │ ├── EquilibriumIndexOfAnArray.cpp │ ├── LargestSubarrayWith0Sum.cpp │ ├── LargestSubarrayWith0and1.cpp │ ├── PairWithGivenDifference.cpp │ ├── Sort012ArrayDutchNationalFlag_DNF.cpp │ ├── SubarrayWithGivenSum.cpp │ ├── WaveSort.cpp │ └── run ├── DynamicProgramming │ ├── FriendsPairing.cpp │ ├── LCSfor3strings.cpp │ ├── LongestRepeatingSubsequence.cpp │ ├── MaximumSizeSubmatrixWithAll1.cpp │ ├── MaximumSumBitonicSubsequence.cpp │ ├── MinimumStepsToReachEnd.cpp │ ├── PartitionSubset.cpp │ ├── SubsetSum.cpp │ ├── SuperUglyNumbers.cpp │ ├── UglyNumber.cpp │ ├── lonngestBiotonicSubsequence.cpp │ └── run ├── Greedy │ ├── FractionalKnapsack.cpp │ ├── JobSequencing.cpp │ └── run ├── InterviewPrep │ └── MathsAndAlgoPuzzle │ │ ├── ClosestNumber.cpp │ │ ├── GCD.cpp │ │ ├── LCMandGCD.cpp │ │ └── SeriesAp.cpp ├── LinkedList │ ├── CircularLinkedList.cpp │ └── run ├── RecursionAndBacktracking │ ├── HamiltonianCycle.cpp │ ├── KswapsToFormBiggestNumber.cpp │ ├── LongestPossibleRouteInMatrixWithHurdles.cpp │ ├── Subsets.cpp │ └── run ├── SearchingAndSorting │ ├── CheckReversingAnArrayMakesItSorted.cpp │ ├── CommonElementsInThreeSortedArrays.cpp │ ├── DNF.cpp │ ├── DuplicatesInOnTimeAndConstantSpace.cpp │ ├── LargestMultipleOf3FromDigitarray.cpp │ ├── MinimumSwapsToSortArray.cpp │ ├── PairWithGreatestproduct.cpp │ ├── PermuteArray.cpp │ └── run ├── Strings │ ├── AnagramSubstringSearch.cpp │ ├── CheckBinaryAnagram.cpp │ ├── CheckKAnagrams.cpp │ ├── CountTotalAnagramSubstring.cpp │ ├── CountWordsWithithi1th.cpp │ ├── Find101Patern.cpp │ ├── FindFirstStringIsASubsequenceofSecond.cpp │ ├── FirstNonRepeatingCharacter.cpp │ ├── GroupWordsWithSameSetOfCharacters.cpp │ ├── KthCharacterOfDecryptedString.cpp │ ├── LexicographicallyFirstpalindrome.cpp │ ├── LongestNonPalindromicSubstring.cpp │ ├── LongestPalindromicSubstring.cpp │ ├── NextGreaterBinary.cpp │ ├── PrintAllBinaryStrings.cpp │ ├── PrintAllDistinctCharacters.cpp │ ├── PrintAnagramsTogether.cpp │ ├── PrintDistinctpalindromes.cpp │ ├── RepeatedSubsequence.cpp │ ├── SearchWordIn2dCharArray.cpp │ ├── SmallesWindowSubstring.cpp │ ├── SmallestWindowSubstringOfSameString.cpp │ ├── SubsequenceOfFormaibjck.cpp │ └── run ├── SudoPlacement │ ├── ArraysAndSearching │ │ └── LinearSearch.cpp │ └── Maths │ │ ├── AngleBetweenHourAndMinuteHand.cpp │ │ ├── DiceThrow.cpp │ │ ├── NthStair.cpp │ │ ├── PowerOfTwo.cpp │ │ ├── PowerofNAnother.cpp │ │ ├── TrailingZeros.cpp │ │ └── UniqueNumber.cpp └── test.txt ├── HB ├── AquamanAndTrident.cpp ├── RecursionAndBacktracking │ ├── TillingProblem2.cpp │ ├── TriWizard.cpp │ ├── VertexTour.cpp │ └── run └── Trie.cpp ├── Hackerrank ├── .DS_Store ├── ArushiUppal.cpp ├── BitManipulation │ ├── Cipher.cpp │ └── run ├── HourRank26 │ └── ComboMeal.java ├── Hourrank30 │ └── videoconference.java ├── ProjectEuler │ ├── Euler1.cpp │ ├── Euler10.java │ ├── Euler2.cpp │ ├── Euler3.cpp │ ├── Euler4.cpp │ ├── Euler6.cpp │ ├── Euler7.cpp │ ├── Euler8.cpp │ └── run └── run ├── IB ├── .DS_Store ├── Arrays │ └── MaximumAbsoluteDiff.cpp └── Hashing │ ├── ColorfulNumber.cpp │ └── LargestSubarrayWithZeroSum.cpp ├── InterviewPrep ├── .DS_Store ├── Arrays │ ├── CheckApSequence.cpp │ ├── FindDuplicate.cpp │ ├── LeetCode │ │ ├── CanJumpToLast.cpp │ │ ├── ContainsDuplicate.cpp │ │ ├── ContainsDuplicate2.cpp │ │ ├── FindDisappearedNumbers.cpp │ │ ├── FindMaxConsecutiveOnes.cpp │ │ ├── FlipsRequiredToMakeStringMonotonic.cpp │ │ ├── GlobalAndLocalInversion.cpp │ │ ├── JumoGame2.cpp │ │ ├── JumpGame1.cpp │ │ ├── KDiffPairInArray.cpp │ │ ├── MajorityElement.cpp │ │ ├── MaximumProductof3Numbers.cpp │ │ ├── MissingNumber.cpp │ │ ├── MoveZeroToEnd.cpp │ │ ├── NextGreaterElement3.cpp │ │ ├── RevealCardsInIncreasingOrder.cpp │ │ ├── ShiftingLetters.cpp │ │ ├── SumAfterFlippingMatrix.cpp │ │ ├── ThirdMinimum.cpp │ │ ├── same_xor_pair.cpp │ │ └── stretchy_Strings.cpp │ ├── MaximumSumSubarray.cpp │ ├── MergeTwoSortedArrays.cpp │ ├── RangeAddition.cpp │ ├── RecoverArray.cpp │ └── run ├── Backtracking │ ├── .DS_Store │ └── Leetcode │ │ ├── NumberOfSquarefularrays.cpp │ │ ├── androidunlock.cpp │ │ ├── ipaddressrestore.cpp │ │ ├── mirrornumber.cpp │ │ └── run ├── DynamicProgramming │ ├── AlphaCode.cpp │ ├── BuildingBridges.cpp │ ├── Leetcode │ │ ├── 2KeysKeyboard.cpp │ │ ├── 4KeysKeyboard.cpp │ │ ├── ArithmeticSlices1.cpp │ │ ├── ArithmeticSlices2.cpp │ │ ├── BurstBallons.cpp │ │ ├── Candy.java │ │ ├── ClimbingStairs.cpp │ │ ├── CombinationSum4.cpp │ │ ├── DistinctSubsequences.cpp │ │ ├── EditDistance.cpp │ │ ├── HouseRobber.java │ │ ├── InterleavingStrings.cpp │ │ ├── KnightProbability.cpp │ │ ├── MinSumPath.cpp │ │ ├── PaintHouse.cpp │ │ ├── PalindromicPartition.cpp │ │ ├── PartitionEqualSubsetSum.cpp │ │ ├── ScrambleString.cpp │ │ ├── Session9 │ │ ├── UniquePathWithObstacles.cpp │ │ ├── UniquePaths.cpp │ │ ├── WildcardPatternMatching.cpp │ │ └── run │ ├── MaximumSumSubarray.cpp │ ├── MinSquareCut.cpp │ ├── MinStepsToOne.cpp │ ├── MinimumDeletionsTOMakeStringPalindrome.cpp │ ├── MinimumNumberOfDeletionsToMakeArraySorted.cpp │ ├── MinimumOperationTOReactFrom0toN.cpp │ ├── MinimumSumPartition.cpp │ ├── MountainValley.cpp │ ├── NoOfBST.java │ ├── NoOfBalancedBT.java │ ├── NoOfBalanedParenthesis.cpp │ ├── NoOfWaysToPartitionSetOfSizeNintoKsubsets.cpp │ ├── OptimalBST.cpp │ ├── OptimalGameStratergy.cpp │ ├── RodCutting.cpp │ ├── TempleOfferings.cpp │ └── run ├── Graphs │ └── Leetcode │ │ ├── CloneGraph.cpp │ │ ├── CourseSchedule1.cpp │ │ ├── CourseSchedule2.cpp │ │ ├── FlowerPlantingWithNoAdjacent.cpp │ │ ├── GraphValidTree.cpp │ │ └── TownJudge.cpp ├── HashMap │ ├── AllAnagramsInString.cpp │ ├── DoublePairArray.cpp │ ├── IsContiguousArrayDuplicacy.cpp │ ├── IsFrequencyEqual.cpp │ ├── IsTwoArrayEqual.cpp │ ├── Isogram.cpp │ ├── Kanagrams.cpp │ ├── NumberOfPairSumInMatrices.cpp │ ├── PairSumDivisibility.cpp │ ├── RatsInForest.cpp │ ├── SubsetOfOtherArray.cpp │ ├── SweetsAndFestivals.cpp │ ├── run │ └── test.cpp ├── Heaps │ ├── Leetcode │ │ ├── KthLargestElementInAStream.cpp │ │ ├── KthLargestElementInArray.cpp │ │ ├── LastStoneWeight.cpp │ │ └── ReorganizeString.cpp │ └── kthSmallestFraction.cpp ├── LRUcache.cpp ├── LinkedList │ ├── ArrangeVowelConsonants.cpp │ ├── ConnectedComponentsLL.java │ ├── DetectLoopStartInLL.java │ ├── InsertInCyclicSortedList.cpp │ ├── LongestPalindromeInLL$Node.class │ ├── LongestPalindromeInLL.class │ ├── LongestPalindromeInLL.java │ ├── NbykthElement.cpp │ ├── OccurenceOfAnumberInLinkedList.cpp │ ├── RearrangeLLoddEven.java │ ├── RemoveDuplicatesFromSortedLinkedList.cpp │ ├── RemoveLastOccurenceOfElementInLL$Node.class │ ├── RemoveLastOccurenceOfElementInLL.class │ ├── RemoveLastOccurenceOfElementInLL.java │ ├── ReverseLinkedListFromMtoN.cpp │ ├── SortListof012.cpp │ ├── SplitCircularListIn2Halves$Node.class │ ├── SplitCircularListIn2Halves.class │ ├── SplitCircularListIn2Halves.java │ ├── SplitLinkedListIntoKParts.cpp │ └── run ├── MountainValley.cpp ├── Sorting │ └── Leetcode │ │ ├── LargestPerimeterTriangle.cpp │ │ ├── MeetingRooms.cpp │ │ ├── SortArrayByParity.cpp │ │ └── ValidAnagram.cpp ├── Trees │ ├── Leetcode │ │ ├── AllNodesDistanceKInBinaryTree.cpp │ │ ├── AverageOfLevelsInBinaryTree.cpp │ │ ├── ConvertBSTtoGreaterTree.cpp │ │ ├── NodesAtDistanceKfromLeaf.cpp │ │ └── PathSum.cpp │ ├── SumOfNodesAtKthLevelRepresentedByString.cpp │ ├── VertexCover.cpp │ └── run ├── input.txt ├── output.txt ├── test ├── test.cpp └── test.java ├── README.md ├── Readme.md ├── SPOJ ├── .DS_Store ├── DP │ ├── COINS.cpp │ ├── MST1.cpp │ └── run ├── FIBEZ.cpp ├── NHAY.cpp ├── NumberTHeory.cpp │ ├── DivSum.cpp │ ├── DivSum2.cpp │ ├── GCD2.cpp │ ├── JohnyLearnsModularExponentiation.cpp │ ├── MAIN74.cpp │ ├── MediumFactorization.cpp │ ├── TDKPrime.cpp │ ├── TDPrimes.cpp │ └── run ├── a.out ├── run ├── test.cpp └── test.java ├── UN ├── .DS_Store └── STL-PLus │ ├── .DS_Store │ ├── Algorithms │ ├── ABCDEF │ ├── ABCDEF.cpp │ ├── Avg_Length │ ├── Avg_Length.cpp │ ├── STL_Algo_Demo │ ├── STL_Algo_Demo.cpp │ ├── Subsums │ ├── Subsums.cpp │ ├── input.txt │ └── output.txt │ ├── Strings │ ├── String_Intro │ ├── String_Intro.cpp │ ├── input.txt │ └── output.txt │ └── Vector │ ├── .DS_Store │ ├── Chef_and_min_color │ ├── Chef_and_min_color.cpp │ ├── Difference_Vector │ ├── Difference_Vector.cpp │ ├── Identical_Palindrome │ ├── Identical_Palindrome.cpp │ ├── Little_Girl_Max_Sum │ ├── Little_Girl_Max_Sum.cpp │ ├── Vector_Intro │ ├── Vector_Intro.cpp │ ├── input.txt │ └── output.txt ├── UnacademyCourse ├── .DS_Store ├── ADP │ ├── Lecture 1 │ │ └── unique_bst.cpp │ ├── SUMOFDIGITS │ ├── SUMOFDIGITS.cpp │ ├── knapsack_atcoder_variant.cpp │ ├── longest_repeated_subseq.cpp │ ├── matching.cpp │ ├── painthouse.cpp │ └── painthouse2.cpp ├── AdditionalConceptsCPPJuly2021 │ ├── Lecture1 │ │ ├── stackmemorydemo │ │ ├── stackmemorydemo.cpp │ │ └── tempCodeRunnerFile.cpp │ ├── Lecture10 │ │ ├── deque_demo │ │ ├── deque_demo.cpp │ │ ├── input.txt │ │ ├── list_demo │ │ ├── list_demo.cpp │ │ ├── output.txt │ │ ├── rmid2 │ │ └── rmid2.cpp │ ├── Lecture12 │ │ ├── exception_handling │ │ ├── exception_handling.cpp │ │ ├── exception_handling.sublime-workspace │ │ ├── exceptions_demo │ │ ├── exceptions_demo.cpp │ │ ├── input.txt │ │ ├── map_demo │ │ ├── map_demo.cpp │ │ ├── multimap_demo │ │ ├── multimap_demo.cpp │ │ ├── output.txt │ │ ├── run │ │ ├── tempCodeRunnerFile.cpp │ │ ├── unordered_map_demo │ │ └── unordered_map_demo.cpp │ ├── Lecture13 │ │ ├── bitset │ │ ├── bitset.cpp │ │ ├── input.txt │ │ ├── output.txt │ │ ├── pair_od_topics.cpp │ │ ├── pbds_demo.cpp │ │ └── trie_demo.cpp │ ├── Lecture14 │ │ ├── algo │ │ ├── algo.cpp │ │ ├── input.txt │ │ ├── output.txt │ │ ├── static_demo │ │ ├── static_demo.cpp │ │ ├── subsums │ │ ├── subsums.cpp │ │ └── tempCodeRunnerFile.cpp │ ├── Lecture15 │ │ ├── average_length │ │ ├── average_length.cpp │ │ ├── input.txt │ │ ├── output.txt │ │ ├── permutation_stl │ │ ├── permutation_stl.cpp │ │ ├── pure_virtual_function │ │ ├── pure_virtual_function.cpp │ │ ├── run │ │ ├── tempCodeRunnerFile.cpp │ │ ├── virtual_func_demo │ │ └── virtual_func_demo.cpp │ ├── Lecture16 │ │ ├── ambiguous │ │ ├── ambiguous.cpp │ │ ├── input.txt │ │ ├── namespace_demo │ │ ├── namespace_demo.cpp │ │ └── output.txt │ ├── Lecture2 │ │ ├── function_pointer │ │ ├── function_pointer.cpp │ │ ├── output.txt │ │ ├── run │ │ ├── smart_pointer_weak │ │ ├── smart_pointer_weak.cpp │ │ ├── smart_pointers │ │ ├── smart_pointers_shared │ │ ├── smart_pointers_shared.cpp │ │ ├── smart_pointers_unique.cpp │ │ ├── tempCodeRunnerFile.cpp │ │ ├── types_of_pointers │ │ └── types_of_pointers.cpp │ ├── Lecture3 │ │ ├── DemoClass │ │ └── DemoClass.cpp │ ├── Lecture4 │ │ ├── const_demo │ │ ├── const_demo.cpp │ │ ├── const_demo_2 │ │ ├── const_demo_2.cpp │ │ ├── constructor_demo │ │ ├── constructor_demo.cpp │ │ ├── operator_overloading │ │ ├── operator_overloading.cpp │ │ └── tempCodeRunnerFile.cpp │ ├── Lecture5 │ │ ├── classes_demo │ │ ├── classes_demo.cpp │ │ ├── inheritance_demo3 │ │ ├── inheritance_demo3.cpp │ │ ├── inheritance_demo_1 │ │ ├── inheritance_demo_1.cpp │ │ ├── inheritance_demo_2 │ │ ├── inheritance_demo_2.cpp │ │ └── output.txt │ ├── Lecture6 │ │ ├── Vector_Demo │ │ ├── Vector_Demo.cpp │ │ ├── copy_constructor │ │ ├── copy_constructor.cpp │ │ ├── input.txt │ │ ├── output.txt │ │ ├── tempCodeRunnerFile.cpp │ │ ├── vector_is_cool │ │ ├── vector_is_cool.cpp │ │ ├── vector_optimisation │ │ └── vector_optimisation.cpp │ ├── Lecture7 │ │ ├── input.txt │ │ ├── multiline_string │ │ ├── multiline_string.cpp │ │ ├── output.txt │ │ ├── run │ │ ├── string_demo │ │ ├── string_demo.cpp │ │ ├── string_literal │ │ ├── string_literal.cpp │ │ ├── string_optimisation │ │ └── string_optimisation.cpp │ ├── Lecture8 │ │ ├── complex.cpp │ │ ├── friend_demo.cpp │ │ ├── input.txt │ │ ├── output.txt │ │ ├── queues_demo │ │ ├── queues_demo.cpp │ │ ├── run │ │ ├── stacks_demo │ │ └── stacks_demo.cpp │ └── Lecture9 │ │ ├── comparators │ │ ├── comparators.cpp │ │ ├── generics │ │ ├── generics.cpp │ │ ├── generics_2 │ │ ├── generics_2.cpp │ │ ├── input.txt │ │ ├── nested_classes.cpp │ │ └── output.txt ├── AdvanceCPP │ ├── Lecture1 │ │ ├── DMA.cpp │ │ ├── FunctionPointers │ │ ├── FunctionPointers.cpp │ │ ├── Lambda.cpp │ │ └── run │ ├── Lecture10 │ │ ├── deque.cpp │ │ ├── input.txt │ │ ├── listsdemo │ │ ├── listsdemo.cpp │ │ ├── output.txt │ │ ├── priorityqueuedemo │ │ └── priorityqueuedemo.cpp │ ├── Lecture11 │ │ ├── CustomException │ │ ├── CustomException.cpp │ │ ├── Demo │ │ ├── Demo.cpp │ │ ├── MapsDemo │ │ ├── MapsDemo.cpp │ │ ├── input.txt │ │ ├── multimapdemo │ │ ├── multimapdemo.cpp │ │ ├── output.txt │ │ ├── set_and_unordered_set │ │ ├── set_and_unordered_set.cpp │ │ ├── unordered_map_demo │ │ └── unordered_map_demo.cpp │ ├── Lecture12 │ │ ├── BitsetDemo │ │ ├── BitsetDemo.cpp │ │ ├── CLA.cpp │ │ ├── Demo │ │ ├── Demo.cpp │ │ ├── input.txt │ │ ├── output.txt │ │ └── run │ ├── Lecture13 │ │ ├── AstronmicalDB.cpp │ │ ├── InversionCount.cpp │ │ └── PBDSdemo.cpp │ ├── Lecture14 │ │ ├── ABCDEF │ │ ├── ABCDEF.cpp │ │ ├── STL_BS_Demo │ │ ├── STL_BS_Demo.cpp │ │ ├── algorithms_demo │ │ ├── algorithms_demo.cpp │ │ ├── input.txt │ │ ├── output.txt │ │ ├── random_walk │ │ └── random_walk.cpp │ ├── Lecture15 │ │ ├── BattleWithWhoYouKNow.cpp │ │ ├── GoodPairs.cpp │ │ ├── input.txt │ │ └── output.txt │ ├── Lecture2 │ │ ├── OOPS1 │ │ ├── OOPS1.cpp │ │ ├── SmartPointers │ │ ├── SmartPointers.cpp │ │ ├── input.txt │ │ └── output.txt │ ├── Lecture3 │ │ ├── ConstructorDemo │ │ ├── ConstructorDemo.cpp │ │ ├── OperatorOverloading │ │ ├── OperatorOverloading.cpp │ │ ├── constdemo │ │ ├── constdemo.cpp │ │ ├── input.txt │ │ └── output.txt │ ├── Lecture4 │ │ ├── Inheritance1 │ │ ├── Inheritance1.cpp │ │ ├── Inheritance2 │ │ ├── Inheritance2.cpp │ │ ├── Inheritance3 │ │ ├── Inheritance3.cpp │ │ ├── Inheritance4 │ │ ├── Inheritance4.cpp │ │ ├── Inheritance5 │ │ ├── Inheritance5.cpp │ │ ├── classsize │ │ ├── classsize.cpp │ │ ├── input.txt │ │ └── output.txt │ ├── Lecture5 │ │ ├── DiamondProblem │ │ ├── DiamondProblem.cpp │ │ ├── InheritanceWithoutVirtualFunc │ │ ├── InheritanceWithoutVirtualFunc.cpp │ │ ├── Interfaces_AbstractClass │ │ ├── Interfaces_AbstractClass.cpp │ │ ├── VirtualDestructor │ │ ├── VirtualDestructor.cpp │ │ ├── VirtualFunctions │ │ ├── VirtualFunctions.cpp │ │ ├── input.txt │ │ └── output.txt │ ├── Lecture6 │ │ ├── Comparators │ │ ├── Comparators.cpp │ │ ├── Generics │ │ ├── Generics.cpp │ │ ├── a.out │ │ ├── input.txt │ │ ├── output.txt │ │ └── run │ ├── Lecture7 │ │ ├── VectorDemo │ │ ├── VectorDemo.cpp │ │ ├── VectorOptimisation │ │ ├── VectorOptimisation.cpp │ │ ├── VectorsAreCool │ │ ├── VectorsAreCool.cpp │ │ ├── input.txt │ │ └── output.txt │ ├── Lecture8 │ │ ├── StringIntroDemo │ │ ├── StringIntroDemo.cpp │ │ ├── StringLiterals │ │ ├── StringLiterals.cpp │ │ ├── StringPerformace │ │ ├── StringPerformace.cpp │ │ ├── StringTokenization │ │ ├── StringTokenization.cpp │ │ ├── getlineusage │ │ ├── getlineusage.cpp │ │ ├── input.txt │ │ ├── output.txt │ │ └── s │ └── Lecture9 │ │ ├── StackSTL │ │ ├── StackSTL.cpp │ │ ├── frienddemo │ │ ├── frienddemo.cpp │ │ ├── input.txt │ │ ├── largestrectanglehistogram │ │ ├── largestrectanglehistogram.cpp │ │ ├── output.txt │ │ ├── overloadstreamoperator │ │ ├── overloadstreamoperator.cpp │ │ ├── queue │ │ └── queue.cpp ├── AdvancedDPDec │ ├── DigitDp │ │ ├── INCXOR │ │ ├── INCXOR.cpp │ │ ├── classynumbers │ │ ├── classynumbers.cpp │ │ ├── digitsumatcoder │ │ ├── digitsumatcoder.cpp │ │ ├── magicnumbers │ │ ├── magicnumbers.cpp │ │ ├── maximumproduct │ │ ├── maximumproduct.cpp │ │ ├── output.txt │ │ ├── sumofdigit │ │ ├── sumofdigit.cpp │ │ └── tempCodeRunnerFile.cpp │ ├── Dpwithbitmask │ │ ├── Asimpletask │ │ ├── Asimpletask.cpp │ │ ├── MahmoudandEhabandyetanotherxortask │ │ ├── MahmoudandEhabandyetanotherxortask.cpp │ │ ├── RamanAndNumbers │ │ ├── RamanAndNumbers.cpp │ │ ├── elephantsandtshirts │ │ ├── elephantsandtshirts.cpp │ │ ├── matching.cpp │ │ ├── output.txt │ │ ├── tempCodeRunnerFile.cpp │ │ └── travelling_salesman.cpp │ ├── Lecture1 │ │ ├── tourist │ │ ├── tourist.cpp │ │ └── vaisuandqueries.cpp │ └── SOSDp │ │ ├── SpecialPairsHackerearth │ │ ├── SpecialPairsHackerearth.cpp │ │ ├── vimwar │ │ ├── vimwar.cpp │ │ ├── vowels │ │ └── vowels.cpp ├── AdvancedDSIP │ ├── GSS1 │ ├── GSS1.cpp │ ├── Heap │ ├── Heap.cpp │ ├── MaxXorPair │ ├── MaxXorPair.cpp │ ├── PythonToCPp │ ├── SegmentTree │ ├── SegmentTree.cpp │ ├── Trie.cpp │ ├── a.out │ ├── input.txt │ ├── mostdist │ ├── mostdist.cpp │ ├── output.txt │ └── run ├── Algorithms │ ├── ABCDEF │ ├── ABCDEF.cpp │ ├── Avg_Length │ ├── Avg_Length.cpp │ ├── STL_Algo_Demo │ ├── STL_Algo_Demo.cpp │ ├── Subsums │ ├── Subsums.cpp │ ├── input.txt │ └── output.txt ├── BasicDSA │ ├── BST.py │ ├── BinaryHeap.py │ ├── BinaryTree.py │ └── MaxHeapPython.py ├── DPInterviewPrepMay2021 │ ├── .DS_Store │ ├── Lecture1 │ │ ├── Dp Interview 1.pdf │ │ ├── Fib │ │ ├── Fib.cpp │ │ ├── HouseRobber │ │ ├── HouseRobber.cpp │ │ ├── input.txt │ │ └── output.txt │ ├── Lecture10 │ │ ├── famtree │ │ ├── famtree.cpp │ │ ├── input.txt │ │ ├── longestpath │ │ ├── longestpath.cpp │ │ ├── output.txt │ │ ├── vertexcover │ │ └── vertexcover.cpp │ ├── Lecture11 │ │ ├── AlyonaAndStrings │ │ ├── AlyonaAndStrings.cpp │ │ ├── input.txt │ │ ├── output.txt │ │ ├── xorcicuit │ │ └── xorcicuit.cpp │ ├── Lecture12 │ │ ├── JonSnowAndHisFavouriteNumber │ │ ├── JonSnowAndHisFavouriteNumber.cpp │ │ ├── input.txt │ │ ├── output.txt │ │ ├── royandcoingbox │ │ ├── royandcoingbox.cpp │ │ ├── tsp │ │ ├── tsp.cpp │ │ └── untitled │ ├── Lecture13 │ │ ├── ArtihmeticSlices2 │ │ ├── ArtihmeticSlices2.cpp │ │ ├── KnightProbability │ │ ├── KnightProbability.cpp │ │ ├── input.txt │ │ └── output.txt │ ├── Lecture2 │ │ ├── Dp 2 Interview.pdf │ │ ├── JumpOverBuilding │ │ ├── JumpOverBuilding.cpp │ │ ├── RemovingDigits │ │ ├── RemovingDigits.cpp │ │ ├── TotalCoinChangeCombination.cpp │ │ ├── input.txt │ │ └── output.txt │ ├── Lecture3 │ │ ├── CountGridPath │ │ ├── CountGridPath.cpp │ │ ├── input.txt │ │ ├── output.txt │ │ ├── test │ │ └── test.cpp │ ├── Lecture4 │ │ ├── LIS │ │ ├── LIS.cpp │ │ ├── MaxHapiness.cpp │ │ ├── editDistance │ │ ├── editDistance.cpp │ │ ├── input.txt │ │ └── output.txt │ ├── Lecture5 │ │ ├── WildCardPatternMatching │ │ ├── WildCardPatternMatching.cpp │ │ ├── input.txt │ │ └── output.txt │ ├── Lecture6 │ │ ├── input.txt │ │ ├── mcm │ │ ├── mcm.cpp │ │ └── output.txt │ ├── Lecture7 │ │ ├── DungeonGame │ │ ├── DungeonGame.cpp │ │ ├── Knapsack2 │ │ ├── Knapsack2.cpp │ │ ├── OptimalGameStrategy │ │ ├── OptimalGameStrategy.cpp │ │ ├── UnboundedKnapsack │ │ ├── UnboundedKnapsack.cpp │ │ ├── fibonacci.js │ │ ├── input.txt │ │ ├── lcm.js │ │ ├── output.txt │ │ ├── pattern1.js │ │ ├── pattern2.js │ │ └── power.js │ ├── Lecture8 │ │ ├── ChefCollectCoins_BurstBallon │ │ ├── ChefCollectCoins_BurstBallon.cpp │ │ ├── input.txt │ │ └── output.txt │ └── Lecture9 │ │ ├── BadLuckIsland │ │ ├── BadLuckIsland.cpp │ │ ├── TouristSpoj │ │ ├── TouristSpoj.cpp │ │ ├── input.txt │ │ └── output.txt ├── DiscreteDec │ ├── DpWithProbability │ │ ├── atleastXheads.cpp │ │ ├── basluckisland │ │ ├── basluckisland.cpp │ │ ├── knightprobability.cpp │ │ ├── randomquery │ │ ├── randomquery.cpp │ │ └── tempCodeRunnerFile.cpp │ └── Expectation │ │ ├── favdice │ │ └── favdice.cpp ├── DiscreteMaths │ ├── Lecture10 │ │ ├── favdice │ │ └── favdice.cpp │ ├── Lecture11 │ │ ├── random_query.cpp │ │ └── sushi.cpp │ ├── Lecture2 │ │ ├── GameOfDeletion.cpp │ │ ├── countsetbits.cpp │ │ ├── input.txt │ │ └── output.txt │ ├── Lecture3 │ │ ├── great_xor │ │ ├── great_xor.cpp │ │ ├── input.txt │ │ └── output.txt │ ├── Lecture4 │ │ ├── complexity │ │ └── complexity.cpp │ └── Lecture9 │ │ ├── bad_luck_island │ │ ├── bad_luck_island.cpp │ │ ├── coins │ │ ├── coins.cpp │ │ ├── input.txt │ │ ├── knightprobab.cpp │ │ └── output.txt ├── DiscreteMathsJan2022 │ ├── Lecture1 │ │ └── readme.md │ └── MatrixExpo │ │ ├── fiblogn │ │ ├── fiblogn.cpp │ │ ├── run │ │ ├── seqspoj │ │ └── seqspoj.cpp ├── GraphMarch │ ├── ArticulationPointsAndBridges │ │ ├── articulationpointsandbridges │ │ ├── articulationpointsandbridges.cpp │ │ └── run │ ├── Graphcoloring │ │ └── bipartite.cpp │ ├── Lecture1 │ │ ├── adj_matric_impl.cpp │ │ ├── graph_adj_list_impl.cpp │ │ └── graph_impl.cpp │ ├── Lecture11 │ │ ├── dsu.cpp │ │ └── secretpass.cpp │ ├── Lecture2 │ │ ├── all_path │ │ ├── all_path.cpp │ │ ├── has_path │ │ ├── has_path.cpp │ │ ├── input.txt │ │ ├── output.txt │ │ └── tree_cutting.cpp │ ├── Lecture3 │ │ ├── bfs │ │ ├── bfs.cpp │ │ ├── conncected_components │ │ ├── conncected_components.cpp │ │ ├── input.txt │ │ ├── journey_to_the_moon │ │ ├── journey_to_the_moon.cpp │ │ └── output.txt │ ├── Lecture4 │ │ ├── number_of_islands.cpp │ │ ├── rotten_oranges │ │ └── rotten_oranges.cpp │ ├── Lecture5 │ │ ├── holi.cpp │ │ ├── longest_path │ │ ├── longest_path.cpp │ │ ├── run │ │ └── subordinates.cpp │ ├── Lecture6 │ │ ├── Independentset.cpp │ │ └── run │ ├── Lecture7 │ │ ├── famtree.cpp │ │ └── run │ ├── Lecture8 │ │ ├── run │ │ └── toposort.cpp │ ├── Lecture9 │ │ ├── dijkstra │ │ ├── dijkstra.cpp │ │ └── run │ └── MST │ │ ├── kruskals.cpp │ │ ├── mergesort.js │ │ ├── prims.cpp │ │ └── run ├── GraphsOct │ ├── Lecture1 │ │ ├── graph_adj_list.cpp │ │ ├── graph_impl │ │ ├── graph_impl.cpp │ │ ├── incidence_matrix │ │ ├── incidence_matrix.cpp │ │ ├── input.txt │ │ └── output.txt │ ├── Lecture10 │ │ ├── 0_1_bfs_min_modification │ │ ├── 0_1_bfs_min_modification.cpp │ │ ├── input.txt │ │ ├── longest_path │ │ ├── longest_path.cpp │ │ └── output.txt │ ├── Lecture11 │ │ ├── independentset │ │ ├── independentset.cpp │ │ ├── input.txt │ │ ├── output.txt │ │ ├── subordinates │ │ └── subordinates.cpp │ ├── Lecture12 │ │ ├── input.txt │ │ ├── output.txt │ │ ├── tree_painting │ │ ├── tree_painting.cpp │ │ └── xor_circuit.cpp │ ├── Lecture13 │ │ ├── input.txt │ │ ├── insq15 │ │ ├── output.txt │ │ └── tempCodeRunnerFile.cpp │ ├── Lecture16 │ │ └── kruskals.cpp │ ├── Lecture17 │ │ ├── articulation_point │ │ └── articulation_point.cpp │ ├── Lecture18 │ │ └── bipartiteGraph.cpp │ ├── Lecture2 │ │ ├── has_path │ │ ├── has_path.cpp │ │ ├── input.txt │ │ ├── output.txt │ │ ├── tempCodeRunnerFile.cpp │ │ ├── tree_cutting │ │ └── tree_cutting.cpp │ ├── Lecture3 │ │ ├── holi │ │ ├── holi.cpp │ │ ├── input.txt │ │ └── output.txt │ ├── Lecture4 │ │ ├── input.txt │ │ ├── journey_to_the_moon │ │ ├── journey_to_the_moon.cpp │ │ ├── output.txt │ │ ├── permutation_swaps │ │ ├── permutation_swaps.cpp │ │ └── sssp_bfs.cpp │ ├── Lecture5 │ │ ├── chef_and_cinema │ │ ├── chef_and_cinema.cpp │ │ ├── dsu.cpp │ │ ├── input.txt │ │ ├── output.txt │ │ └── tempCodeRunnerFile.cpp │ ├── Lecture6 │ │ ├── cutting_graph.cpp │ │ ├── input.txt │ │ ├── output.txt │ │ ├── people_manip.cpp │ │ └── secret_password.cpp │ ├── Lecture7 │ │ ├── alient_dictionary.cpp │ │ ├── input.txt │ │ └── output.txt │ └── Lecture8 │ │ ├── input.txt │ │ ├── kosaraju.cpp │ │ └── output.txt ├── GreedyOct │ ├── Lecture1 │ │ ├── k_negations.cpp │ │ ├── ramdev │ │ └── ramdev.cpp │ ├── Lecture11 │ │ ├── longest_happy_string.cpp │ │ ├── reorganize_string.cpp │ │ ├── the_score_game.cpp │ │ └── xor_value.cpp │ ├── Lecture2 │ │ ├── input.txt │ │ ├── kth_largest_permutation │ │ ├── kth_largest_permutation.cpp │ │ ├── output.txt │ │ └── tempCodeRunnerFile.cpp │ ├── Lecture4 │ │ ├── activity_Selection │ │ ├── activity_Selection.cpp │ │ ├── banana_string │ │ ├── banana_string.cpp │ │ ├── input.txt │ │ ├── output.txt │ │ └── tempCodeRunnerFile.cpp │ ├── Lecture5 │ │ ├── input.txt │ │ ├── largest_number.cpp │ │ ├── little_girl_max_sum │ │ ├── little_girl_max_sum.cpp │ │ └── output.txt │ ├── Lecture6 │ │ ├── huffmanc │ │ ├── huffmanc.cpp │ │ ├── input.txt │ │ ├── output.txt │ │ └── tempCodeRunnerFile.cpp │ └── Lecture9 │ │ ├── composite_coloring │ │ ├── composite_coloring.cpp │ │ ├── input.txt │ │ ├── output.txt │ │ └── tempCodeRunnerFile.cpp ├── IntoductionToPythonJun2020 │ ├── Arrays.py │ ├── DataTypes.py │ ├── Listdemo.py │ ├── TimeComplexity.py │ ├── UserInteraction.py │ ├── conditionals.py │ ├── functions.py │ ├── gcdlcm.py │ ├── introduction.py │ ├── loops.py │ └── variables.py ├── IntroToDS_CPIT_SEP │ ├── Lecture1 │ │ ├── array_demo │ │ ├── array_demo.cpp │ │ ├── call_stack_demo.cpp │ │ ├── sort_zero_ones_twos │ │ ├── sort_zero_ones_twos.cpp │ │ ├── sort_zeros_ones │ │ └── sort_zeros_ones.cpp │ ├── Lecture2 │ │ ├── two_d_array_demo │ │ ├── two_d_array_demo.cpp │ │ ├── waveprint │ │ └── waveprint.cpp │ ├── Lecture3 │ │ └── kadane.cpp │ ├── Lecture4 │ │ ├── linkedlist │ │ └── linkedlist.cpp │ ├── Lecture5 │ │ ├── LinkedList │ │ └── LinkedList.cpp │ ├── Lecture6 │ │ ├── Stacks │ │ ├── Stacks.cpp │ │ ├── stack_stl │ │ └── stack_stl.cpp │ ├── Lecture7 │ │ └── minstack.cpp │ ├── Lecture8 │ │ ├── hashmap │ │ └── hashmap.cpp │ └── Lecture9 │ │ ├── bt │ │ ├── bt.cpp │ │ └── run ├── IntroToProgrammingCPIT │ ├── Lecture1 │ │ ├── hello_world │ │ └── hello_world.cpp │ ├── Lecture2 │ │ ├── data_types │ │ ├── data_types.cpp │ │ ├── taking_input │ │ ├── taking_input.cpp │ │ └── tempCodeRunnerFile.cpp │ ├── Lecture3 │ │ ├── operators │ │ └── operators.cpp │ ├── Lecture5 │ │ ├── address_of_demo │ │ ├── address_of_demo.cpp │ │ ├── pointers_demo │ │ ├── pointers_demo.cpp │ │ └── stack_memory_demo.cpp │ ├── Lecture6 │ │ ├── pointers_demo │ │ ├── pointers_demo.cpp │ │ ├── type_cast │ │ └── type_cast.cpp │ └── Tic_Tac_Toe │ │ ├── game │ │ └── game.cpp ├── MathsForIPMay2021 │ ├── .DS_Store │ ├── Lecture1 │ │ ├── Euclid │ │ ├── Euclid.cpp │ │ ├── extendedeuclidalgo │ │ ├── extendedeuclidalgo.cpp │ │ ├── input.txt │ │ ├── modularexponent │ │ ├── modularexponent.cpp │ │ └── output.txt │ ├── Lecture2 │ │ ├── divisoroffactorial │ │ ├── divisoroffactorial.cpp │ │ ├── input.txt │ │ ├── output.txt │ │ ├── primesieve │ │ ├── primesieve.cpp │ │ ├── segmentedsieve │ │ └── segmentedsieve.cpp │ ├── Lecture3 │ │ ├── CanUHandleWeights │ │ ├── CanUHandleWeights.cpp │ │ ├── input.txt │ │ └── output.txt │ ├── Lecture4 │ │ ├── fiblogn │ │ ├── fiblogn.cpp │ │ ├── input.txt │ │ └── output.txt │ ├── Lecture5 │ │ ├── BeautifulFactorialGame │ │ ├── BeautifulFactorialGame.cpp │ │ ├── input.txt │ │ ├── output.txt │ │ ├── primedivisibility │ │ └── primedivisibility.cpp │ ├── Lecture6 │ │ ├── FavDice │ │ ├── FavDice.cpp │ │ ├── input.txt │ │ └── output.txt │ ├── Lecture7 │ │ ├── GCDLCM.cpp │ │ ├── IncomeOnNthDay.java │ │ └── OracAndLcm.cpp │ └── Lecture8 │ │ ├── input.txt │ │ ├── numbersummation │ │ ├── numbersummation.cpp │ │ ├── output.txt │ │ └── tempCodeRunnerFile ├── NumberTheoryJuly2021 │ ├── Lecture1 │ │ ├── cubefree │ │ ├── cubefree.cpp │ │ ├── input.txt │ │ ├── output.txt │ │ ├── segmented_sieve │ │ ├── segmented_sieve.cpp │ │ ├── sieve │ │ └── sieve.cpp │ ├── Lecture10 │ │ ├── input.txt │ │ ├── miller_rabin_test │ │ ├── miller_rabin_test.cpp │ │ ├── mobius_function │ │ ├── mobius_function.cpp │ │ └── output.txt │ ├── Lecture11 │ │ ├── coprime-subsequence │ │ ├── coprime-subsequence.cpp │ │ ├── input.txt │ │ └── output.txt │ ├── Lecture12 │ │ ├── fiblogn │ │ ├── fiblogn.cpp │ │ ├── input.txt │ │ └── output.txt │ ├── Lecture13 │ │ ├── DaulatRamIncomeNthDay │ │ ├── DaulatRamIncomeNthDay.cpp │ │ ├── eulerphi │ │ ├── eulerphi.cpp │ │ ├── input.txt │ │ └── output.txt │ ├── Lecture15 │ │ ├── crt │ │ ├── crt.cpp │ │ ├── input.txt │ │ └── output.txt │ ├── Lecture2 │ │ ├── divisor_of_factorial │ │ ├── divisor_of_factorial.cpp │ │ ├── input.txt │ │ ├── optimised_sieve_o_n │ │ ├── optimised_sieve_o_n.cpp │ │ ├── output.txt │ │ ├── tempCodeRunnerFile.cpp │ │ ├── troublesome_harsha │ │ └── troublesome_harsha.cpp │ ├── Lecture3 │ │ ├── FantasticSets │ │ ├── FantasticSets.cpp │ │ ├── input.txt │ │ ├── nfactorful │ │ ├── nfactorful.cpp │ │ ├── output.txt │ │ └── tempCodeRunnerFile.cpp │ ├── Lecture4 │ │ ├── BeautifulFactorialGame │ │ ├── BeautifulFactorialGame.cpp │ │ ├── input.txt │ │ └── output.txt │ ├── Lecture5 │ │ ├── BinaryExponentiation │ │ ├── BinaryExponentiation.cpp │ │ ├── gcd_euclid │ │ ├── gcd_euclid.cpp │ │ ├── input.txt │ │ └── output.txt │ ├── Lecture6 │ │ ├── Untitled (91).pdf │ │ ├── extended_euclid.cpp │ │ └── moduloinv.cpp │ └── Lecture8 │ │ └── canuhandleweights.cpp ├── PrepBackendCourseJuly2021 │ ├── Lecture2 │ │ ├── tempCodeRunnerFile.js │ │ └── types.js │ ├── Lecture3 │ │ └── coercion.js │ ├── Lecture4 │ │ ├── iife.js │ │ ├── scopes_Demo_3.js │ │ ├── scopes_demo.js │ │ ├── scopes_demo_2.js │ │ ├── scopes_demo_4.js │ │ ├── scoping_demo_5.js │ │ └── strict_mode.js │ ├── Lecture5 │ │ ├── async_vs_sync.js │ │ ├── let_var_const.js │ │ ├── non_blocking.js │ │ └── tempCodeRunnerFile.js │ └── Lecture6 │ │ ├── closure.js │ │ ├── generator.js │ │ └── problems_with_callbacks.js ├── PythonToCPP │ ├── .DS_Store │ ├── Advantageofreferences.cpp │ ├── DMA.cpp │ ├── DataType.cpp │ ├── Demo.cpp │ ├── Demo.s │ ├── Demo1.cpp │ ├── Demo1.s │ ├── Do-while.cpp │ ├── Exercise.cpp │ ├── ExercisePointers.cpp │ ├── HelloWorld.cpp │ ├── Operators.cpp │ ├── OptimisationDemo │ │ ├── compilerOptimization.cpp │ │ ├── level0 │ │ ├── level1 │ │ ├── level2 │ │ ├── level3 │ │ └── run │ ├── Outputformatting.cpp │ ├── PointersIntroduction.cpp │ ├── References.cpp │ ├── a.out │ ├── arrays.cpp │ ├── compiler-commands.md │ ├── conditionals.cpp │ ├── forloop.cpp │ ├── functions.cpp │ ├── loops.cpp │ ├── precisionhandling.cpp │ ├── preprocess.cpp │ ├── preprocess.o │ ├── preprocess.s │ ├── run │ ├── source.o │ ├── structsincpp.cpp │ └── typeofpointers.cpp ├── PythonToCPPOct │ ├── Lecture1 │ │ ├── lgcd │ │ ├── lgcd.cpp │ │ └── lgcd.out │ ├── Lecture2 │ │ ├── hello.cpp │ │ ├── hello.o │ │ ├── hello.s │ │ ├── hello1.s │ │ ├── hello_expanded.cpp │ │ ├── run │ │ ├── src │ │ └── src3 │ ├── Lecture3 │ │ ├── arrays_Demo │ │ ├── arrays_Demo.cpp │ │ ├── dangling_pointer │ │ ├── dangling_pointer.cpp │ │ ├── malloc_demo │ │ ├── malloc_demo.cpp │ │ ├── new_del_ │ │ ├── new_del_.cpp │ │ ├── smart_pointers_Demo │ │ ├── smart_pointers_Demo.cpp │ │ ├── void_pointer │ │ └── void_pointer.cpp │ └── Lecture4 │ │ ├── cmd_args.cpp │ │ ├── little_girl_max_sum.cpp │ │ ├── run │ │ ├── shared_pointer_demo │ │ ├── shared_pointer_demo.cpp │ │ ├── unique_pointer_demo │ │ ├── unique_pointer_demo.cpp │ │ ├── weak_pointer │ │ └── weak_pointer.cpp ├── RecursionAndBacktrackingShort │ ├── Lecture1 │ │ ├── factorial │ │ ├── factorial.cpp │ │ ├── fib │ │ ├── fib.cpp │ │ ├── isSorted │ │ ├── isSorted.cpp │ │ ├── output.txt │ │ ├── print_dec │ │ ├── print_dec.cpp │ │ ├── print_inc │ │ ├── print_inc.cpp │ │ ├── printinc_dec │ │ ├── printinc_dec.cpp │ │ └── tempCodeRunnerFile.cpp │ ├── Lecture2 │ │ ├── BubbleSort │ │ ├── BubbleSort.cpp │ │ ├── friendsPair │ │ └── friendsPair.cpp │ ├── Lecture3 │ │ ├── codesofstring │ │ ├── codesofstring.cpp │ │ ├── output.txt │ │ ├── permutations │ │ ├── permutations.cpp │ │ ├── subsequences │ │ ├── subsequences.cpp │ │ └── tempCodeRunnerFile.cpp │ ├── Lecture4 │ │ ├── input.txt │ │ ├── mazepath │ │ ├── mazepath.cpp │ │ ├── output.txt │ │ ├── permutations_optimized │ │ ├── permutations_optimized.cpp │ │ ├── ratmaze │ │ ├── ratmaze.cpp │ │ └── tempCodeRunnerFile.cpp │ ├── Lecture5 │ │ ├── input.txt │ │ ├── knightsTour │ │ ├── knightsTour.cpp │ │ ├── nqueen │ │ ├── nqueen.cpp │ │ ├── output.txt │ │ └── tempCodeRunnerFile.cpp │ └── Lecture6 │ │ ├── balancedParenthesis │ │ ├── balancedParenthesis.cpp │ │ ├── getpermutation.js │ │ ├── input.txt │ │ ├── lexicographicalOrder │ │ ├── lexicographicalOrder.cpp │ │ ├── output.txt │ │ ├── phonekeypadcomb │ │ └── phonekeypadcomb.cpp ├── RecursionBacktrackingINtroDPCPAug21 │ ├── Lecture1 │ │ ├── factorial │ │ ├── factorial.cpp │ │ ├── input.txt │ │ ├── no_of_binary_strings.cpp │ │ ├── output.txt │ │ ├── printdec │ │ ├── printdec.cpp │ │ ├── printinc │ │ ├── printinc.cpp │ │ ├── printincdec │ │ └── printincdec.cpp │ ├── Lecture10 │ │ ├── input.txt │ │ ├── lis │ │ ├── lis.cpp │ │ ├── output.txt │ │ ├── royandcoinbox1 │ │ ├── royandcoinbox1.cpp │ │ └── tempCodeRunnerFile.cpp │ ├── Lecture11 │ │ ├── input.txt │ │ ├── jonsnowandhisfavnumber │ │ ├── jonsnowandhisfavnumber.cpp │ │ ├── knapsack1 │ │ ├── knapsack1.cpp │ │ ├── knapsack2 │ │ ├── knapsack2.cpp │ │ ├── output.txt │ │ └── tempCodeRunnerFile.cpp │ ├── Lecture12 │ │ ├── dungeongame.cpp │ │ ├── input.txt │ │ ├── output.txt │ │ ├── painthouse.cpp │ │ ├── workingout │ │ └── workingout.cpp │ ├── Lecture13 │ │ ├── lcs.cpp │ │ ├── mpilot │ │ └── mpilot.cpp │ ├── Lecture14 │ │ ├── lps │ │ └── lps.cpp │ ├── Lecture15 │ │ ├── input.txt │ │ ├── mcm │ │ ├── mcm.cpp │ │ └── output.txt │ ├── Lecture16 │ │ ├── input.txt │ │ ├── mixtures │ │ ├── mixtures.cpp │ │ ├── output.txt │ │ └── tempCodeRunnerFile.cpp │ ├── Lecture2 │ │ ├── bubblesort │ │ ├── bubblesort.cpp │ │ ├── generate_parenthesis │ │ ├── generate_parenthesis.cpp │ │ ├── input.txt │ │ ├── output.txt │ │ ├── printbinarystrings │ │ ├── printbinarystrings.cpp │ │ ├── subsequence │ │ └── subsequence.cpp │ ├── Lecture3 │ │ ├── input.txt │ │ ├── output.txt │ │ ├── permutations │ │ └── permutations.cpp │ ├── Lecture4 │ │ ├── input.txt │ │ ├── lexico.cpp │ │ ├── nqueen │ │ ├── nqueen.cpp │ │ ├── output.txt │ │ ├── subsequence_op │ │ ├── subsequence_op.cpp │ │ └── tempCodeRunnerFile.cpp │ ├── Lecture5 │ │ ├── Nknights │ │ ├── Nknights.cpp │ │ ├── Strobogrammatic.cpp │ │ ├── input.txt │ │ ├── output.txt │ │ ├── unlockpattern │ │ └── unlockpattern.cpp │ ├── Lecture6 │ │ ├── 2keykeyboard.cpp │ │ ├── frogjump │ │ ├── frogjump.cpp │ │ ├── houserobber.cpp │ │ ├── input.txt │ │ └── output.txt │ ├── Lecture7 │ │ ├── coinchangeperm │ │ ├── coinchangeperm.cpp │ │ ├── input.txt │ │ ├── mincoinchange.cpp │ │ └── output.txt │ ├── Lecture8 │ │ ├── equal │ │ ├── equal.cpp │ │ ├── knightstour │ │ ├── knightstour.cpp │ │ ├── sudoku.cpp │ │ └── tempCodeRunnerFile.cpp │ └── Lecture9 │ │ ├── calvingame │ │ ├── calvingame.cpp │ │ ├── input.txt │ │ ├── output.txt │ │ ├── ratmaze │ │ ├── ratmaze.cpp │ │ ├── sumofdigits │ │ └── sumofdigits.cpp ├── RelevelVideos │ └── inf.js ├── STL │ └── Vectors │ │ ├── ChefAndMinColouring │ │ ├── ChefAndMinColouring.cpp │ │ ├── LittleGirlAndMaxSum │ │ ├── LittleGirlAndMaxSum.cpp │ │ ├── Understanding_Vectors │ │ ├── Understanding_Vectors.cpp │ │ ├── input.txt │ │ ├── output.txt │ │ └── run ├── SegmentTreeAndFenwickTree │ ├── Lecture1 │ │ ├── sum_segment_Tree │ │ ├── sum_segment_Tree.cpp │ │ └── tempCodeRunnerFile.cpp │ ├── Lecture2 │ │ ├── gss1 │ │ ├── gss1.cpp │ │ ├── input.txt │ │ ├── output.txt │ │ ├── range_min_query_lazy │ │ └── range_min_query_lazy.cpp │ ├── Lecture3 │ │ ├── kgss.cpp │ │ └── lis.cpp │ ├── Lecture4 │ │ ├── coordinate-compression │ │ ├── coordinate-compression.cpp │ │ └── sparse_seg_tree.cpp │ └── Lecture7 │ │ ├── frequent │ │ ├── frequent.cpp │ │ ├── tempCodeRunnerFile.cpp │ │ └── two_d_seg_tree_adv.cpp ├── Sorting │ └── InversionCount.java ├── SortingAndSearchingPythonJune2021 │ ├── Lecture1 │ │ ├── BubbleSort.py │ │ ├── Insertionsort.py │ │ └── Selectionsort.py │ ├── Lecture11 │ │ ├── AggressiveCows.py │ │ └── BookAllocation.py │ ├── Lecture12 │ │ ├── Intro_to_BS_On_Real_Number.py │ │ ├── minimum_maximum_on_a_path.py │ │ └── no_of_ropes.py │ ├── Lecture13 │ │ └── Get_Together.py │ ├── Lecture14 │ │ ├── TernarySearch.py │ │ └── race_time.py │ ├── Lecture15 │ │ ├── custom_sort.py │ │ └── speedup.py │ ├── Lecture2 │ │ ├── Merge.py │ │ ├── WaveSort.py │ │ └── mergesort.py │ ├── Lecture3 │ │ └── Quick_Sort.py │ ├── Lecture4 │ │ ├── InversionCount.py │ │ ├── MinimumHotelRooms.py │ │ └── SoldierRanges.py │ ├── Lecture5 │ │ ├── CountingSort.py │ │ └── RadixSort.py │ ├── Lecture6 │ │ ├── BinarySearch.py │ │ ├── Peak_Element.py │ │ └── Search_Rotated_Sorted_Array.py │ ├── Lecture7 │ │ ├── Adjust_Rect.py │ │ ├── SQRT.py │ │ ├── TwoDpeakElement.py │ │ └── printing_copies.py │ ├── Lecture8 │ │ ├── BisectDemo.py │ │ ├── FindMedianOfSortedArray.py │ │ ├── NotATriangle.py │ │ └── VasyaAndPetya.py │ └── Lecture9 │ │ └── Total_SexTuple.py ├── StringsGameTheoryCG │ ├── .DS_Store │ ├── ComputationalGeometry │ │ ├── geometry_template │ │ ├── geometry_template.cpp │ │ ├── input.txt │ │ └── tempCodeRunnerFile.cpp │ ├── PersistentTrie │ │ ├── tempCodeRunnerFile.cpp │ │ ├── xor_queries │ │ └── xor_queries.cpp │ ├── StringMatching │ │ ├── kmp │ │ ├── kmp.cpp │ │ ├── output.txt │ │ ├── rabinkarp │ │ ├── rabinkarp.cpp │ │ ├── zalgo │ │ └── zalgo.cpp │ └── Tries │ │ ├── input.txt │ │ ├── output.txt │ │ └── trie.cpp └── TriesAndSparsetableJuly2021 │ ├── .DS_Store │ ├── Lecture1 │ ├── Trie │ ├── Trie.cpp │ └── tempCodeRunnerFile.cpp │ ├── Lecture2 │ ├── MaxXorPair │ ├── MaxXorPair.cpp │ ├── input.txt │ └── output.txt │ ├── Lecture3 │ ├── SubXor │ ├── SubXor.cpp │ ├── input.txt │ └── output.txt │ ├── Lecture5 │ ├── pbds_trie.cpp │ ├── tempCodeRunnerFile.cpp │ ├── xor_queries │ └── xor_queries.cpp │ ├── Lecture7 │ ├── range_min_query_sparse_table │ ├── range_min_query_sparse_table.cpp │ ├── range_sum_query_sparse_table │ └── range_sum_query_sparse_table.cpp │ └── Lecture8 │ ├── input.txt │ ├── lca │ ├── lca.cpp │ ├── output.txt │ └── tempCodeRunnerFile.cpp ├── UnacademyFreeLiveClass ├── .DS_Store ├── Adding_Large_Numbers ├── Adding_Large_Numbers.cpp ├── Adjbc ├── Adjbc.cpp ├── Basic C++ │ ├── Simple.cpp │ ├── hello │ ├── helloworld │ ├── helloworld.cpp │ ├── output.txt │ ├── run │ ├── s │ ├── simple │ ├── stringdemo │ ├── stringdemo.cpp │ ├── stringperformance │ └── stringperformance.cpp ├── CoinProbab ├── CoinProbab.cpp ├── CountGridPath ├── CountGridPath.cpp ├── Count_Manhattan_points ├── Count_Manhattan_points.cpp ├── CountingSort ├── CountingSort.cpp ├── DPINtroMicroCourse │ ├── Lecture1 │ │ ├── fib │ │ └── fib.cpp │ ├── Lecture2 │ │ ├── acode │ │ ├── acode.cpp │ │ ├── input.txt │ │ └── output.txt │ ├── Lecture3 │ │ └── LIS.cpp │ ├── Lecture4 │ │ ├── mcoins │ │ └── mcoins.cpp │ ├── Lecture5 │ │ ├── input.txt │ │ ├── longestpath │ │ ├── longestpath.cpp │ │ └── output.txt │ └── Lecture6 │ │ ├── adjcnt │ │ ├── adjcnt.cpp │ │ ├── input.txt │ │ └── output.txt ├── Dice_Combination ├── Dice_Combination.cpp ├── Difference_Vector_Trick ├── Difference_Vector_Trick.cpp ├── EuclidsAlgo ├── EuclidsAlgo.cpp ├── Factorial ├── Factorial.cpp ├── FibDp ├── FibDp.cpp ├── FibRecursion.cpp ├── GNYR09F ├── GNYR09F.cpp ├── Generic_Graph.cpp ├── Grid1 ├── Grid1.cpp ├── HashMap.py ├── Hostel_Visit ├── Hostel_Visit.cpp ├── JULKA ├── JULKA.cpp ├── Kruskals ├── Kruskals.cpp ├── LISBS.cpp ├── LittleGirl ├── LittleGirl.cpp ├── Little_Girl_And_Max_Sum ├── Little_Girl_And_Max_Sum.cpp ├── LongestPath ├── LongestPath.cpp ├── Matching ├── Matching.cpp ├── MinStepsToOne ├── MinStepsToOne.cpp ├── Minimizing_Coin ├── Minimizing_Coin.cpp ├── Most_Distant_Points ├── Most_Distant_Points.cpp ├── MotivationProblem ├── MotivationProblem.cpp ├── NOTATRI ├── NOTATRI.cpp ├── Pathtracing ├── Pathtracing.cpp ├── Pattern1.cpp ├── Pattern2.cpp ├── PointerSeries │ ├── Lecture1 │ │ ├── Introductiontopointers │ │ ├── Introductiontopointers.cpp │ │ └── tempCodeRunnerFile.cpp │ ├── Lecture2 │ │ ├── arraysandpointers │ │ ├── arraysandpointers.cpp │ │ ├── pointerdiscussion2 │ │ ├── pointerdiscussion2.cpp │ │ ├── tempCodeRunnerFile.cpp │ │ └── tutorial.md │ └── Lecture3 │ │ ├── input.txt │ │ ├── intro │ │ ├── intro.cpp │ │ ├── output.txt │ │ └── tempCodeRunnerFile.cpp ├── ProjectEuler1.cpp ├── Rabbits.cpp ├── Random_Walk ├── Random_Walk.cpp ├── RecursionYT │ ├── generateparenthesis │ ├── generateparenthesis.cpp │ ├── mazepath │ ├── mazepath.cpp │ ├── output.txt │ ├── tempCodeRunnerFile.cpp │ ├── tower_of_hanoi │ └── tower_of_hanoi.cpp ├── Removing_Digits ├── Removing_Digits.cpp ├── STLSeriesYT │ ├── Lecture1 │ │ ├── input.txt │ │ ├── more_on_vectors │ │ ├── more_on_vectors.cpp │ │ ├── output.txt │ │ ├── tempCodeRunnerFile.cpp │ │ ├── vectordemo │ │ ├── vectordemo.cpp │ │ ├── vectorsarecool │ │ └── vectorsarecool.cpp │ ├── Lecture2 │ │ ├── deque_demo │ │ ├── deque_demo.cpp │ │ ├── input.txt │ │ ├── list_demo │ │ ├── list_demo.cpp │ │ ├── output.txt │ │ ├── queue_demo.cpp │ │ ├── stack_demo │ │ └── stack_demo.cpp │ └── Lecture3 │ │ ├── Strings_Demo │ │ ├── Strings_Demo.cpp │ │ ├── input.txt │ │ ├── output.txt │ │ ├── run │ │ ├── sso │ │ ├── sso.cpp │ │ └── tempCodeRunnerFile.cpp ├── STl_Algo_Demo ├── STl_Algo_Demo.cpp ├── SUBSUMS ├── SUBSUMS.cpp ├── SeinField.cpp ├── SortingMay2021 │ ├── BubbleSort │ ├── BubbleSort.cpp │ ├── CountingSort │ ├── CountingSort.cpp │ ├── InsertionSort │ ├── InsertionSort.cpp │ ├── MergeSort │ ├── MergeSort.cpp │ ├── Quicksort │ ├── Quicksort.cpp │ ├── SelectrionSort │ ├── SelectrionSort.cpp │ ├── input.txt │ └── output.txt ├── SortingSearchingMicroCourseSep │ ├── InsertionSort │ ├── InsertionSort.cpp │ ├── bubble_sort │ ├── bubble_sort.cpp │ ├── merge_sort │ ├── merge_sort.cpp │ ├── output.txt │ ├── selection_sort │ └── selection_sort.cpp ├── String_STL ├── String_STL.cpp ├── SubsetofAnArrayIterative.cpp ├── TreesCPIT │ └── Lesson1 │ │ ├── binary_tree │ │ ├── binary_tree.cpp │ │ ├── output.txt │ │ ├── random_query │ │ ├── sushi │ │ └── tempCodeRunnerFile.cpp ├── Understanding_Vectors ├── Understanding_Vectors.cpp ├── a.out ├── arrays.cpp ├── basic_ds_stl.cpp ├── binarysearch.cpp ├── coin_combination2 ├── coin_combination2.cpp ├── coins ├── coins.cpp ├── conditionals.cpp ├── conditionals2.cpp ├── custom_comp.cpp ├── dicecombination ├── dicecombination.cpp ├── fence ├── fence.cpp ├── fib ├── fib.cpp ├── firstnonrepeatingcharacter ├── firstnonrepeatingcharacter.cpp ├── frog ├── frog.cpp ├── heap ├── heap.cpp ├── helloworld.cpp ├── impressingchefina.cpp ├── input.txt ├── julka.java ├── kordredlcs ├── kordredlcs.cpp ├── labrats.py ├── lcs ├── lcs.cpp ├── lcsfor2string ├── lcsfor2string.cpp ├── lexico.cpp ├── lis ├── lis.cpp ├── mazepath.cpp ├── mincoinchange ├── mincoinchange.cpp ├── minimum_maximum_on_path.cpp ├── oddtopic.cpp ├── output.txt ├── pairswithdivisibilityk.py ├── palpalstrings.py ├── primes.cpp ├── primitive_pythagorean_triplet.cpp ├── projecteuler2.cpp ├── ratmaze.cpp ├── run ├── run.out ├── seinfield ├── sones ├── sones.cpp ├── sortzeroonetwo.cpp ├── splitwise.cpp ├── switchstatements.cpp ├── tableof5.cpp ├── tempCodeRunnerFile ├── tempCodeRunnerFile.cpp ├── test ├── test.cpp ├── test1.cpp ├── time.cpp ├── time.py ├── twodarray.cpp └── unionfindbypathcompression.cpp ├── assign8b ├── Q1.java ├── Q10.java ├── Q2.java ├── Q3.java ├── Q4.java ├── Q5.java ├── Q6.class ├── Q6.java ├── Q7.java ├── Q8.java └── Q9.java ├── graph_lectures ├── Cycle_detection_using_DSU ├── Cycle_detection_using_DSU.cpp ├── Cycle_detection_using_dfs ├── Cycle_detection_using_dfs.cpp ├── DSU ├── DSU.cpp ├── DSU_min_max_size ├── DSU_min_max_size.cpp ├── G.cpp ├── adjacency_list ├── adjacency_list.cpp ├── adjancency_map ├── adjancency_map.cpp ├── allpath ├── allpath.cpp ├── any_path ├── any_path.cpp ├── bipartite.cpp ├── clone_graph.cpp ├── coloring_a_border.cpp ├── connected_components ├── connected_components.cpp ├── cycle_detection_using_bfs ├── cycle_detection_using_bfs.cpp ├── dijkstra.cpp ├── flood_fill_leetcode.cpp ├── floodfill │ ├── apple.txt │ ├── floodfill.cpp │ ├── run │ └── square.txt ├── keys_and_room.cpp ├── kruskals ├── kruskals.cpp ├── minimum_cost_to_make_atleast_one_valid_path.cpp ├── number_of_islands.cpp ├── pacific_atlantic_water_flow.cpp ├── prims.cpp ├── prims.txt ├── rotten_oranges.cpp ├── run ├── shortest_path_bfs ├── shortest_path_bfs.cpp ├── tempCodeRunnerFile.cpp ├── topological_sort_kahn_algo ├── topological_sort_kahn_algo.cpp └── weidhted_adj_list.cpp ├── greedy_lectures ├── .DS_Store ├── boats_to_save_people.cpp ├── build │ └── Debug │ │ ├── outDebug │ │ └── sliding_wondow_media.o ├── construct_String_with_repeat_limit.cpp ├── fractional_knapsack.cpp ├── maximize_sum_of_array_after_k_negations.cpp ├── maximum_units_on_a_truck.cpp ├── meeting_rooms_2.cpp ├── merge_intervals_variation1.cpp ├── merge_intervals_variation_2.cpp ├── minimum_number_of_Arrow_to_burst_ballon.cpp ├── minimum_product_subset.cpp ├── non_overlapping_intervals_variation_1.cpp ├── non_overlapping_intervals_variation_2.cpp ├── rabbits_in_a_forest.cpp ├── run ├── sliding_wondow_media └── sliding_wondow_media.cpp ├── heap_lectures ├── .DS_Store ├── ConvertArrayToHeap.cpp ├── ConvertArrayToHeapOptimised.cpp ├── heapsort.cpp ├── inbuild_pq ├── inbuild_pq.cpp ├── last_stone_weight.cpp ├── maxheap ├── maxheap.cpp ├── rmid2 ├── rmid2.cpp ├── run └── tempCodeRunnerFile.cpp ├── output.txt ├── permutation ├── permutation.cpp ├── recursive_revision_lecture ├── friends_pairing.cpp └── run ├── run └── videos └── Searching ├── BinarySearch ├── BinarySearch.cpp ├── LinearSearch ├── LinearSearch.cpp └── ternary_search.cpp /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode/ 2 | 3 | -------------------------------------------------------------------------------- /10x_engg_bootcamp/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/10x_engg_bootcamp/.DS_Store -------------------------------------------------------------------------------- /10x_engg_bootcamp/DP_Series/input.txt: -------------------------------------------------------------------------------- 1 | bbbab -------------------------------------------------------------------------------- /10x_engg_bootcamp/DP_Series/lps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/10x_engg_bootcamp/DP_Series/lps -------------------------------------------------------------------------------- /10x_engg_bootcamp/DP_Series/lps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/10x_engg_bootcamp/DP_Series/lps.cpp -------------------------------------------------------------------------------- /10x_engg_bootcamp/DP_Series/mcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/10x_engg_bootcamp/DP_Series/mcm -------------------------------------------------------------------------------- /10x_engg_bootcamp/DP_Series/mcm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/10x_engg_bootcamp/DP_Series/mcm.cpp -------------------------------------------------------------------------------- /10x_engg_bootcamp/DP_Series/output.txt: -------------------------------------------------------------------------------- 1 | 4 2 | 3 | Executed In: 0.229 ms -------------------------------------------------------------------------------- /10x_engg_bootcamp/DP_Series/slimes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/10x_engg_bootcamp/DP_Series/slimes -------------------------------------------------------------------------------- /10x_engg_bootcamp/Graph_series/input.txt: -------------------------------------------------------------------------------- 1 | 7 6 2 | 0 1 3 | 1 2 4 | 2 3 5 | 4 5 6 | 1 4 7 | 5 6 -------------------------------------------------------------------------------- /10x_engg_bootcamp/Graph_series/output.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 3 | Executed In: 0.152 ms -------------------------------------------------------------------------------- /10x_engg_bootcamp/Graph_series/sssp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/10x_engg_bootcamp/Graph_series/sssp -------------------------------------------------------------------------------- /AFLV-CP-Course/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/AFLV-CP-Course/.DS_Store -------------------------------------------------------------------------------- /AFLV-CP-Course/Data-Structures/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AFLV-CP-Course/Warmup/Bus_Numbers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/AFLV-CP-Course/Warmup/Bus_Numbers -------------------------------------------------------------------------------- /AFLV-CP-Course/Warmup/Mandelbrot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/AFLV-CP-Course/Warmup/Mandelbrot -------------------------------------------------------------------------------- /AFLV-CP-Course/Warmup/Mandelbrot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/AFLV-CP-Course/Warmup/Mandelbrot.cpp -------------------------------------------------------------------------------- /AFLV-CP-Course/Warmup/Path_Tracing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/AFLV-CP-Course/Warmup/Path_Tracing -------------------------------------------------------------------------------- /AFLV-CP-Course/Warmup/Server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/AFLV-CP-Course/Warmup/Server -------------------------------------------------------------------------------- /AFLV-CP-Course/Warmup/Server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/AFLV-CP-Course/Warmup/Server.cpp -------------------------------------------------------------------------------- /AFLV-CP-Course/Warmup/input.txt: -------------------------------------------------------------------------------- 1 | 1337 2 | 42 3 | -------------------------------------------------------------------------------- /AFLV-CP-Course/Warmup/output.txt: -------------------------------------------------------------------------------- 1 | 5 -------------------------------------------------------------------------------- /AdaLab/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/AdaLab/.DS_Store -------------------------------------------------------------------------------- /AdaLab/ActivitySelection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/AdaLab/ActivitySelection.cpp -------------------------------------------------------------------------------- /AdaLab/DynamicProgramming/OBST.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/AdaLab/DynamicProgramming/OBST.cpp -------------------------------------------------------------------------------- /AdaLab/DynamicProgramming/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/AdaLab/DynamicProgramming/run -------------------------------------------------------------------------------- /AdaLab/Graph/BellmanFord.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/AdaLab/Graph/BellmanFord.cpp -------------------------------------------------------------------------------- /AdaLab/Graph/Dijkstra.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/AdaLab/Graph/Dijkstra.cpp -------------------------------------------------------------------------------- /AdaLab/Graph/Floyyd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/AdaLab/Graph/Floyyd.cpp -------------------------------------------------------------------------------- /AdaLab/Graph/Kruskals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/AdaLab/Graph/Kruskals.cpp -------------------------------------------------------------------------------- /AdaLab/Graph/Prims.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/AdaLab/Graph/Prims.cpp -------------------------------------------------------------------------------- /AdaLab/Graph/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/AdaLab/Graph/run -------------------------------------------------------------------------------- /AdaLab/Greedy/AcitivitySelection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/AdaLab/Greedy/AcitivitySelection.cpp -------------------------------------------------------------------------------- /AdaLab/Greedy/Huffman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/AdaLab/Greedy/Huffman.cpp -------------------------------------------------------------------------------- /AdaLab/Greedy/JobSchedule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/AdaLab/Greedy/JobSchedule.cpp -------------------------------------------------------------------------------- /AdaLab/Greedy/KnapsackGreedy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/AdaLab/Greedy/KnapsackGreedy.cpp -------------------------------------------------------------------------------- /AdaLab/Greedy/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/AdaLab/Greedy/run -------------------------------------------------------------------------------- /AdaLab/Searching/BinarySearch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/AdaLab/Searching/BinarySearch.cpp -------------------------------------------------------------------------------- /AdaLab/Searching/LinearSearch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/AdaLab/Searching/LinearSearch.cpp -------------------------------------------------------------------------------- /AdaLab/Searching/TernarySearch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/AdaLab/Searching/TernarySearch.cpp -------------------------------------------------------------------------------- /AdaLab/Searching/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/AdaLab/Searching/run -------------------------------------------------------------------------------- /AdaLab/Sorting/BubbleSort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/AdaLab/Sorting/BubbleSort.cpp -------------------------------------------------------------------------------- /AdaLab/Sorting/HeapSort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/AdaLab/Sorting/HeapSort.cpp -------------------------------------------------------------------------------- /AdaLab/Sorting/InsertionSort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/AdaLab/Sorting/InsertionSort.cpp -------------------------------------------------------------------------------- /AdaLab/Sorting/MergeSort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/AdaLab/Sorting/MergeSort.cpp -------------------------------------------------------------------------------- /AdaLab/Sorting/QuickSort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/AdaLab/Sorting/QuickSort.cpp -------------------------------------------------------------------------------- /AdaLab/Sorting/SelectionSort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/AdaLab/Sorting/SelectionSort.cpp -------------------------------------------------------------------------------- /AdaLab/Sorting/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/AdaLab/Sorting/run -------------------------------------------------------------------------------- /AdaLab/StringAlgo/KMP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/AdaLab/StringAlgo/KMP.cpp -------------------------------------------------------------------------------- /AdaLab/StringAlgo/Naive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/AdaLab/StringAlgo/Naive.cpp -------------------------------------------------------------------------------- /AdaLab/StringAlgo/RabinKarp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/AdaLab/StringAlgo/RabinKarp.cpp -------------------------------------------------------------------------------- /AdaLab/StringAlgo/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/AdaLab/StringAlgo/run -------------------------------------------------------------------------------- /AdaLab/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/AdaLab/run -------------------------------------------------------------------------------- /Algo++/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/Algo++/.DS_Store -------------------------------------------------------------------------------- /Algo++/Arrays/ChewbaccaAndNumber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/Algo++/Arrays/ChewbaccaAndNumber.cpp -------------------------------------------------------------------------------- /Algo++/Arrays/FactoSum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/Algo++/Arrays/FactoSum.cpp -------------------------------------------------------------------------------- /Algo++/Arrays/HelpRamu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/Algo++/Arrays/HelpRamu.cpp -------------------------------------------------------------------------------- /Algo++/Arrays/ImageRotation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/Algo++/Arrays/ImageRotation.cpp -------------------------------------------------------------------------------- /Algo++/Arrays/MaxCircularSum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/Algo++/Arrays/MaxCircularSum.cpp -------------------------------------------------------------------------------- /Algo++/Arrays/SanjayNewJob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/Algo++/Arrays/SanjayNewJob.cpp -------------------------------------------------------------------------------- /Algo++/Arrays/StringTokenizer1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/Algo++/Arrays/StringTokenizer1.cpp -------------------------------------------------------------------------------- /Algo++/Arrays/StringTokenizer2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/Algo++/Arrays/StringTokenizer2.cpp -------------------------------------------------------------------------------- /Algo++/Arrays/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/Algo++/Arrays/run -------------------------------------------------------------------------------- /Algo++/Heaps/RunningMedian.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/Algo++/Heaps/RunningMedian.cpp -------------------------------------------------------------------------------- /Algo++/Heaps/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/Algo++/Heaps/run -------------------------------------------------------------------------------- /Algo++/LinkedList/FlattenAList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/Algo++/LinkedList/FlattenAList.cpp -------------------------------------------------------------------------------- /Algo++/LinkedList/LinkedList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/Algo++/LinkedList/LinkedList.cpp -------------------------------------------------------------------------------- /Algo++/LinkedList/SkipList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/Algo++/LinkedList/SkipList.cpp -------------------------------------------------------------------------------- /Algo++/LinkedList/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/Algo++/LinkedList/run -------------------------------------------------------------------------------- /Algo++/Queue/queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/Algo++/Queue/queue.cpp -------------------------------------------------------------------------------- /Algo++/Queue/queuestl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/Algo++/Queue/queuestl.cpp -------------------------------------------------------------------------------- /Algo++/Queue/template_queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/Algo++/Queue/template_queue.cpp -------------------------------------------------------------------------------- /Algo++/Recursion/ArrayIsSorted.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/Algo++/Recursion/ArrayIsSorted.cpp -------------------------------------------------------------------------------- /Algo++/Recursion/BubbleSort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/Algo++/Recursion/BubbleSort.cpp -------------------------------------------------------------------------------- /Algo++/Recursion/CodesOfString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/Algo++/Recursion/CodesOfString.cpp -------------------------------------------------------------------------------- /Algo++/Recursion/FriendsPairing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/Algo++/Recursion/FriendsPairing.cpp -------------------------------------------------------------------------------- /Algo++/Recursion/FunkyChessboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/Algo++/Recursion/FunkyChessboard.cpp -------------------------------------------------------------------------------- /Algo++/Recursion/Tiling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/Algo++/Recursion/Tiling.cpp -------------------------------------------------------------------------------- /Algo++/Recursion/TowerOfHanoi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/Algo++/Recursion/TowerOfHanoi.cpp -------------------------------------------------------------------------------- /Algo++/Recursion/replacepi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/Algo++/Recursion/replacepi.cpp -------------------------------------------------------------------------------- /Algo++/Recursion/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/Algo++/Recursion/run -------------------------------------------------------------------------------- /Algo++/SlidingWindow/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/Algo++/SlidingWindow/run -------------------------------------------------------------------------------- /Algo++/SortingAndSearching/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/Algo++/SortingAndSearching/run -------------------------------------------------------------------------------- /Algo++/Stack/Stack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/Algo++/Stack/Stack.cpp -------------------------------------------------------------------------------- /Algo++/Stack/StackSTL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/Algo++/Stack/StackSTL.cpp -------------------------------------------------------------------------------- /Algo++/Stack/StackUsingVector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/Algo++/Stack/StackUsingVector.cpp -------------------------------------------------------------------------------- /Algo++/Stack/StockSpan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/Algo++/Stack/StockSpan.cpp -------------------------------------------------------------------------------- /Algo++/Stack/TwoStacksUsingArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/Algo++/Stack/TwoStacksUsingArray.cpp -------------------------------------------------------------------------------- /Algo++/Stack/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/Algo++/Stack/run -------------------------------------------------------------------------------- /Algo++/Trees/BST.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/Algo++/Trees/BST.cpp -------------------------------------------------------------------------------- /Algo++/Trees/BT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/Algo++/Trees/BT.cpp -------------------------------------------------------------------------------- /Algo++/Trees/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/Algo++/Trees/run -------------------------------------------------------------------------------- /Algo++/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/Algo++/run -------------------------------------------------------------------------------- /C++Beginners/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/C++Beginners/.DS_Store -------------------------------------------------------------------------------- /C++Beginners/Arrays/BirthdayParadox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/C++Beginners/Arrays/BirthdayParadox -------------------------------------------------------------------------------- /C++Beginners/Fundamentals1/Loop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/C++Beginners/Fundamentals1/Loop.cpp -------------------------------------------------------------------------------- /C++Beginners/Fundamentals1/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/C++Beginners/Fundamentals1/run -------------------------------------------------------------------------------- /C++Beginners/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/C++Beginners/test.cpp -------------------------------------------------------------------------------- /CB/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/.DS_Store -------------------------------------------------------------------------------- /CB/AlgoSummerJune19/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/AlgoSummerJune19/.DS_Store -------------------------------------------------------------------------------- /CB/AlgoSummerJune19/Session1/DNF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/AlgoSummerJune19/Session1/DNF.cpp -------------------------------------------------------------------------------- /CB/AlgoSummerJune19/Session1/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/AlgoSummerJune19/Session1/run -------------------------------------------------------------------------------- /CB/AlgoSummerJune19/Session10/BT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/AlgoSummerJune19/Session10/BT.cpp -------------------------------------------------------------------------------- /CB/AlgoSummerJune19/Session10/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/AlgoSummerJune19/Session10/run -------------------------------------------------------------------------------- /CB/AlgoSummerJune19/Session11/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/AlgoSummerJune19/Session11/run -------------------------------------------------------------------------------- /CB/AlgoSummerJune19/Session12/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/AlgoSummerJune19/Session12/run -------------------------------------------------------------------------------- /CB/AlgoSummerJune19/Session13/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/AlgoSummerJune19/Session13/run -------------------------------------------------------------------------------- /CB/AlgoSummerJune19/Session14/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/AlgoSummerJune19/Session14/a.out -------------------------------------------------------------------------------- /CB/AlgoSummerJune19/Session14/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/AlgoSummerJune19/Session14/run -------------------------------------------------------------------------------- /CB/AlgoSummerJune19/Session2/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/AlgoSummerJune19/Session2/run -------------------------------------------------------------------------------- /CB/AlgoSummerJune19/Session3/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/AlgoSummerJune19/Session3/run -------------------------------------------------------------------------------- /CB/AlgoSummerJune19/Session4/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/AlgoSummerJune19/Session4/run -------------------------------------------------------------------------------- /CB/AlgoSummerJune19/Session5/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/AlgoSummerJune19/Session5/run -------------------------------------------------------------------------------- /CB/AlgoSummerJune19/Session7/LIS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/AlgoSummerJune19/Session7/LIS.cpp -------------------------------------------------------------------------------- /CB/AlgoSummerJune19/Session7/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/AlgoSummerJune19/Session7/run -------------------------------------------------------------------------------- /CB/AlgoSummerJune19/Session8/LCS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/AlgoSummerJune19/Session8/LCS.cpp -------------------------------------------------------------------------------- /CB/AlgoSummerJune19/Session8/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/AlgoSummerJune19/Session8/run -------------------------------------------------------------------------------- /CB/AlgoSummerJune19/Session9/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/AlgoSummerJune19/Session9/run -------------------------------------------------------------------------------- /CB/ChitkaraWorkshop/FibDp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/ChitkaraWorkshop/FibDp.cpp -------------------------------------------------------------------------------- /CB/ChitkaraWorkshop/Nqueen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/ChitkaraWorkshop/Nqueen.cpp -------------------------------------------------------------------------------- /CB/ChitkaraWorkshop/RatInAMaze.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/ChitkaraWorkshop/RatInAMaze.cpp -------------------------------------------------------------------------------- /CB/ChitkaraWorkshop/ReplacePi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/ChitkaraWorkshop/ReplacePi.cpp -------------------------------------------------------------------------------- /CB/ChitkaraWorkshop/Session5: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CB/ChitkaraWorkshop/Subsequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/ChitkaraWorkshop/Subsequence.cpp -------------------------------------------------------------------------------- /CB/ChitkaraWorkshop/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/ChitkaraWorkshop/a.out -------------------------------------------------------------------------------- /CB/ChitkaraWorkshop/nqueen_fast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/ChitkaraWorkshop/nqueen_fast.cpp -------------------------------------------------------------------------------- /CB/ChitkaraWorkshop/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/ChitkaraWorkshop/run -------------------------------------------------------------------------------- /CB/LPU-Workshop/DNF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/LPU-Workshop/DNF.cpp -------------------------------------------------------------------------------- /CB/LPU-Workshop/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/LPU-Workshop/run -------------------------------------------------------------------------------- /CB/LPU-Workshop/subsequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/LPU-Workshop/subsequence.cpp -------------------------------------------------------------------------------- /CB/LPU/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/LPU/.DS_Store -------------------------------------------------------------------------------- /CB/LPU/RapGenerator.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/LPU/RapGenerator.ipynb -------------------------------------------------------------------------------- /CB/LPU/Session1/CodesOfString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/LPU/Session1/CodesOfString.cpp -------------------------------------------------------------------------------- /CB/LPU/Session1/FriendsPairing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/LPU/Session1/FriendsPairing.cpp -------------------------------------------------------------------------------- /CB/LPU/Session1/Lexicographical.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/LPU/Session1/Lexicographical.cpp -------------------------------------------------------------------------------- /CB/LPU/Session1/NoConsecutiveOne.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/LPU/Session1/NoConsecutiveOne.cpp -------------------------------------------------------------------------------- /CB/LPU/Session1/fibonacci.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/LPU/Session1/fibonacci.cpp -------------------------------------------------------------------------------- /CB/LPU/Session1/replacepi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/LPU/Session1/replacepi.cpp -------------------------------------------------------------------------------- /CB/LPU/Session1/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/LPU/Session1/run -------------------------------------------------------------------------------- /CB/LPU/Session1/subsequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/LPU/Session1/subsequence.cpp -------------------------------------------------------------------------------- /CB/LPU/Session1/subsequenceascii.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/LPU/Session1/subsequenceascii.cpp -------------------------------------------------------------------------------- /CB/LPU/Session10/IsAnagram.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/LPU/Session10/IsAnagram.cpp -------------------------------------------------------------------------------- /CB/LPU/Session10/Rats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/LPU/Session10/Rats.cpp -------------------------------------------------------------------------------- /CB/LPU/Session10/dnf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/LPU/Session10/dnf.cpp -------------------------------------------------------------------------------- /CB/LPU/Session10/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/LPU/Session10/run -------------------------------------------------------------------------------- /CB/LPU/Session10/trie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/LPU/Session10/trie.cpp -------------------------------------------------------------------------------- /CB/LPU/Session11/advancedGcd.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CB/LPU/Session11/count3divisors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/LPU/Session11/count3divisors.cpp -------------------------------------------------------------------------------- /CB/LPU/Session11/cubeFreeNumbers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/LPU/Session11/cubeFreeNumbers.cpp -------------------------------------------------------------------------------- /CB/LPU/Session11/cubefree.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/LPU/Session11/cubefree.java -------------------------------------------------------------------------------- /CB/LPU/Session11/euclid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/LPU/Session11/euclid.cpp -------------------------------------------------------------------------------- /CB/LPU/Session11/extendedEuclid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/LPU/Session11/extendedEuclid.cpp -------------------------------------------------------------------------------- /CB/LPU/Session11/nFactorialDivisors.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CB/LPU/Session11/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/LPU/Session11/run -------------------------------------------------------------------------------- /CB/LPU/Session11/sieve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/LPU/Session11/sieve.cpp -------------------------------------------------------------------------------- /CB/LPU/Session12/CountSetBits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/LPU/Session12/CountSetBits.cpp -------------------------------------------------------------------------------- /CB/LPU/Session12/EulerTotient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/LPU/Session12/EulerTotient.cpp -------------------------------------------------------------------------------- /CB/LPU/Session12/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/LPU/Session12/run -------------------------------------------------------------------------------- /CB/LPU/Session13/data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/LPU/Session13/data.txt -------------------------------------------------------------------------------- /CB/LPU/Session13/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/LPU/Session13/run -------------------------------------------------------------------------------- /CB/LPU/Session14/FloodFill.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/LPU/Session14/FloodFill.cpp -------------------------------------------------------------------------------- /CB/LPU/Session14/Kruskals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/LPU/Session14/Kruskals.cpp -------------------------------------------------------------------------------- /CB/LPU/Session14/Prims.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/LPU/Session14/Prims.cpp -------------------------------------------------------------------------------- /CB/LPU/Session14/floodFill/apple.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/LPU/Session14/floodFill/apple.txt -------------------------------------------------------------------------------- /CB/LPU/Session14/floodFill/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/LPU/Session14/floodFill/run -------------------------------------------------------------------------------- /CB/LPU/Session14/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/LPU/Session14/run -------------------------------------------------------------------------------- /CB/LPU/Session2/CountMazePath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/LPU/Session2/CountMazePath.cpp -------------------------------------------------------------------------------- /CB/LPU/Session2/HostelVisit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/LPU/Session2/HostelVisit.cpp -------------------------------------------------------------------------------- /CB/LPU/Session2/PrintMazePath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/LPU/Session2/PrintMazePath.cpp -------------------------------------------------------------------------------- /CB/LPU/Session2/RatMazeCodechef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/LPU/Session2/RatMazeCodechef.cpp -------------------------------------------------------------------------------- /CB/LPU/Session2/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/LPU/Session2/run -------------------------------------------------------------------------------- /CB/LPU/Session2/targetsubset.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/LPU/Session2/targetsubset.java -------------------------------------------------------------------------------- /CB/LPU/Session3/Aquaman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/LPU/Session3/Aquaman.cpp -------------------------------------------------------------------------------- /CB/LPU/Session3/KnightsTour.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/LPU/Session3/KnightsTour.cpp -------------------------------------------------------------------------------- /CB/LPU/Session3/MatrixChainMultiplication.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CB/LPU/Session3/Nqueen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/LPU/Session3/Nqueen.cpp -------------------------------------------------------------------------------- /CB/LPU/Session3/Permutations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/LPU/Session3/Permutations.cpp -------------------------------------------------------------------------------- /CB/LPU/Session3/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/LPU/Session3/run -------------------------------------------------------------------------------- /CB/LPU/Session3/subset.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/LPU/Session3/subset.java -------------------------------------------------------------------------------- /CB/LPU/Session4/AggressiveCows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/LPU/Session4/AggressiveCows.cpp -------------------------------------------------------------------------------- /CB/LPU/Session4/Cashflow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/LPU/Session4/Cashflow.cpp -------------------------------------------------------------------------------- /CB/LPU/Session4/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/LPU/Session4/run -------------------------------------------------------------------------------- /CB/LPU/Session5/GreedyGame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/LPU/Session5/GreedyGame.cpp -------------------------------------------------------------------------------- /CB/LPU/Session5/HuffmanEncoder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/LPU/Session5/HuffmanEncoder.java -------------------------------------------------------------------------------- /CB/LPU/Session5/MaximumCircles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/LPU/Session5/MaximumCircles.cpp -------------------------------------------------------------------------------- /CB/LPU/Session5/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/LPU/Session5/run -------------------------------------------------------------------------------- /CB/LPU/Session6/FriendsPairing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/LPU/Session6/FriendsPairing.cpp -------------------------------------------------------------------------------- /CB/LPU/Session6/KorderedLCS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/LPU/Session6/KorderedLCS.cpp -------------------------------------------------------------------------------- /CB/LPU/Session6/LCS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/LPU/Session6/LCS.cpp -------------------------------------------------------------------------------- /CB/LPU/Session6/fibonacciDP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/LPU/Session6/fibonacciDP.cpp -------------------------------------------------------------------------------- /CB/LPU/Session6/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/LPU/Session6/run -------------------------------------------------------------------------------- /CB/LPU/Session7/EggDropping.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/LPU/Session7/EggDropping.cpp -------------------------------------------------------------------------------- /CB/LPU/Session7/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/LPU/Session7/run -------------------------------------------------------------------------------- /CB/LPU/Session8/CountMazePath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/LPU/Session8/CountMazePath.cpp -------------------------------------------------------------------------------- /CB/LPU/Session8/EditDistance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/LPU/Session8/EditDistance.cpp -------------------------------------------------------------------------------- /CB/LPU/Session8/Knapsack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/LPU/Session8/Knapsack.cpp -------------------------------------------------------------------------------- /CB/LPU/Session8/MinCostPath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/LPU/Session8/MinCostPath.cpp -------------------------------------------------------------------------------- /CB/LPU/Session8/TargetSubset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/LPU/Session8/TargetSubset.cpp -------------------------------------------------------------------------------- /CB/LPU/Session8/WordBreak.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/LPU/Session8/WordBreak.cpp -------------------------------------------------------------------------------- /CB/LPU/Session8/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/LPU/Session8/run -------------------------------------------------------------------------------- /CB/LPU/Session9/LexicoLarger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/LPU/Session9/LexicoLarger.java -------------------------------------------------------------------------------- /CB/LPU/Session9/mcm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/LPU/Session9/mcm.cpp -------------------------------------------------------------------------------- /CB/LPU/Session9/mcmdp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/LPU/Session9/mcmdp.cpp -------------------------------------------------------------------------------- /CB/LPU/Session9/mixtures.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/LPU/Session9/mixtures.cpp -------------------------------------------------------------------------------- /CB/LPU/Session9/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/LPU/Session9/run -------------------------------------------------------------------------------- /CB/LPU/data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/LPU/data.txt -------------------------------------------------------------------------------- /CB/LPU/test.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/LPU/test.mp3 -------------------------------------------------------------------------------- /CB/LaunchpadAugust/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/LaunchpadAugust/.DS_Store -------------------------------------------------------------------------------- /CB/LaunchpadAugust/Lecture-07/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/LaunchpadAugust/Lecture-07/run -------------------------------------------------------------------------------- /CB/LaunchpadAugust/Lecture-08/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/LaunchpadAugust/Lecture-08/run -------------------------------------------------------------------------------- /CB/LaunchpadAugust/mapstl.cpp/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/LaunchpadAugust/mapstl.cpp/run -------------------------------------------------------------------------------- /CB/OnlineCourseCodes/HashMap/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/OnlineCourseCodes/HashMap/a.out -------------------------------------------------------------------------------- /CB/OnlineCourseCodes/HashMap/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/OnlineCourseCodes/HashMap/run -------------------------------------------------------------------------------- /CB/OnlineCourseCodes/HeapsC++/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/OnlineCourseCodes/HeapsC++/run -------------------------------------------------------------------------------- /CB/OnlineCourseCodes/QueuesC++/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/OnlineCourseCodes/QueuesC++/run -------------------------------------------------------------------------------- /CB/OnlineCourseCodes/Trees/BT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/OnlineCourseCodes/Trees/BT.cpp -------------------------------------------------------------------------------- /CB/OnlineCourseCodes/Trees/BT2LL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/OnlineCourseCodes/Trees/BT2LL.cpp -------------------------------------------------------------------------------- /CB/OnlineCourseCodes/Trees/LCA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/OnlineCourseCodes/Trees/LCA.cpp -------------------------------------------------------------------------------- /CB/OnlineCourseCodes/Trees/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/OnlineCourseCodes/Trees/a.out -------------------------------------------------------------------------------- /CB/OnlineCourseCodes/Trees/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/OnlineCourseCodes/Trees/run -------------------------------------------------------------------------------- /CB/OnlineCourseCodes/Tries/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/OnlineCourseCodes/Tries/run -------------------------------------------------------------------------------- /CB/OnlineCourseCodes/TwoDArrays/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/OnlineCourseCodes/TwoDArrays/run -------------------------------------------------------------------------------- /CB/ShivNadarUniversity/Factorial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/ShivNadarUniversity/Factorial.cpp -------------------------------------------------------------------------------- /CB/ShivNadarUniversity/FibDP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/ShivNadarUniversity/FibDP.cpp -------------------------------------------------------------------------------- /CB/ShivNadarUniversity/Nqueen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/ShivNadarUniversity/Nqueen.cpp -------------------------------------------------------------------------------- /CB/ShivNadarUniversity/ReplacePI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/ShivNadarUniversity/ReplacePI.cpp -------------------------------------------------------------------------------- /CB/ShivNadarUniversity/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/ShivNadarUniversity/a.out -------------------------------------------------------------------------------- /CB/ShivNadarUniversity/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/ShivNadarUniversity/run -------------------------------------------------------------------------------- /CB/VITBhopalWorkshop/Factorial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/VITBhopalWorkshop/Factorial.cpp -------------------------------------------------------------------------------- /CB/VITBhopalWorkshop/Mazepath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/VITBhopalWorkshop/Mazepath.cpp -------------------------------------------------------------------------------- /CB/VITBhopalWorkshop/Nqueen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/VITBhopalWorkshop/Nqueen.cpp -------------------------------------------------------------------------------- /CB/VITBhopalWorkshop/RatInMaze.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/VITBhopalWorkshop/RatInMaze.cpp -------------------------------------------------------------------------------- /CB/VITBhopalWorkshop/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/VITBhopalWorkshop/run -------------------------------------------------------------------------------- /CB/VITBhopalWorkshop/subsequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CB/VITBhopalWorkshop/subsequence.cpp -------------------------------------------------------------------------------- /CSES/Array_Description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CSES/Array_Description -------------------------------------------------------------------------------- /CSES/Array_Description.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CSES/Array_Description.cpp -------------------------------------------------------------------------------- /CSES/Book_Shop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CSES/Book_Shop -------------------------------------------------------------------------------- /CSES/Book_Shop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CSES/Book_Shop.cpp -------------------------------------------------------------------------------- /CSES/Coin_Combination_1_DP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CSES/Coin_Combination_1_DP -------------------------------------------------------------------------------- /CSES/Coin_Combination_1_DP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CSES/Coin_Combination_1_DP.cpp -------------------------------------------------------------------------------- /CSES/Coin_Combination_2._DP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CSES/Coin_Combination_2._DP -------------------------------------------------------------------------------- /CSES/Coin_Combination_2._DP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CSES/Coin_Combination_2._DP.cpp -------------------------------------------------------------------------------- /CSES/Dice_Combination_DP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CSES/Dice_Combination_DP -------------------------------------------------------------------------------- /CSES/Dice_Combination_DP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CSES/Dice_Combination_DP.cpp -------------------------------------------------------------------------------- /CSES/Edit_Distance_DP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CSES/Edit_Distance_DP -------------------------------------------------------------------------------- /CSES/Edit_Distance_DP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CSES/Edit_Distance_DP.cpp -------------------------------------------------------------------------------- /CSES/Grid_Paths: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CSES/Grid_Paths -------------------------------------------------------------------------------- /CSES/Grid_Paths.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CSES/Grid_Paths.cpp -------------------------------------------------------------------------------- /CSES/LIS_DP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CSES/LIS_DP -------------------------------------------------------------------------------- /CSES/LIS_DP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CSES/LIS_DP.cpp -------------------------------------------------------------------------------- /CSES/Minimizing_Coins_DP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CSES/Minimizing_Coins_DP -------------------------------------------------------------------------------- /CSES/Minimizing_Coins_DP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CSES/Minimizing_Coins_DP.cpp -------------------------------------------------------------------------------- /CSES/Money_Sums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CSES/Money_Sums -------------------------------------------------------------------------------- /CSES/Money_Sums.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CSES/Money_Sums.cpp -------------------------------------------------------------------------------- /CSES/Projects_Dp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CSES/Projects_Dp -------------------------------------------------------------------------------- /CSES/Projects_Dp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CSES/Projects_Dp.cpp -------------------------------------------------------------------------------- /CSES/Rectangle_Cutting_Dp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CSES/Rectangle_Cutting_Dp -------------------------------------------------------------------------------- /CSES/Rectangle_Cutting_Dp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CSES/Rectangle_Cutting_Dp.cpp -------------------------------------------------------------------------------- /CSES/Removal_Game: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CSES/Removal_Game -------------------------------------------------------------------------------- /CSES/Removal_Game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CSES/Removal_Game.cpp -------------------------------------------------------------------------------- /CSES/Removing_Digits_DP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CSES/Removing_Digits_DP -------------------------------------------------------------------------------- /CSES/Removing_Digits_DP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CSES/Removing_Digits_DP.cpp -------------------------------------------------------------------------------- /CSES/Two_Sets_2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CSES/Two_Sets_2 -------------------------------------------------------------------------------- /CSES/Two_Sets_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CSES/Two_Sets_2.cpp -------------------------------------------------------------------------------- /CSES/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CSES/input.txt -------------------------------------------------------------------------------- /CSES/intro_dp_graph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CSES/intro_dp_graph.cpp -------------------------------------------------------------------------------- /CSES/output.txt: -------------------------------------------------------------------------------- 1 | 7 -------------------------------------------------------------------------------- /CW_Lectures/CustomComparator/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CW_Lectures/CustomComparator/run -------------------------------------------------------------------------------- /CodeBlockZen/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CodeBlockZen/.DS_Store -------------------------------------------------------------------------------- /CodeBlockZen/Loops/SquareRoot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CodeBlockZen/Loops/SquareRoot.cpp -------------------------------------------------------------------------------- /CodeBlockZen/Loops/TermaOfAp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CodeBlockZen/Loops/TermaOfAp.cpp -------------------------------------------------------------------------------- /CodeBlockZen/Patterns/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CodeBlockZen/Patterns/.DS_Store -------------------------------------------------------------------------------- /CodeBlockZen/Patterns/NewPattern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CodeBlockZen/Patterns/NewPattern.cpp -------------------------------------------------------------------------------- /CodeBlockZen/Patterns/NumberX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CodeBlockZen/Patterns/NumberX.cpp -------------------------------------------------------------------------------- /CodeBlockZen/Patterns/Starfield.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CodeBlockZen/Patterns/Starfield.cpp -------------------------------------------------------------------------------- /CodeBlockZen/Patterns/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CodeBlockZen/Patterns/run -------------------------------------------------------------------------------- /CodeBlockZen/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CodeBlockZen/run -------------------------------------------------------------------------------- /CodeTribe/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CodeTribe/.DS_Store -------------------------------------------------------------------------------- /CodeTribe/CppMarathonClass/operator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CodeTribe/CppMarathonClass/operator -------------------------------------------------------------------------------- /CodeTribe/CppMarathonClass/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CodeTribe/CppMarathonClass/run -------------------------------------------------------------------------------- /CodeTribe/CppMarathonClass/run1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CodeTribe/CppMarathonClass/run1 -------------------------------------------------------------------------------- /CodeTribe/CppMarathonClass/run2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CodeTribe/CppMarathonClass/run2 -------------------------------------------------------------------------------- /CodeTribe/CppMarathonClass/tempCodeRunnerFile.cpp: -------------------------------------------------------------------------------- 1 | x > y -------------------------------------------------------------------------------- /CodeTribe/DPMicrocourseSep/fib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CodeTribe/DPMicrocourseSep/fib -------------------------------------------------------------------------------- /CodeTribe/DPMicrocourseSep/fib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CodeTribe/DPMicrocourseSep/fib.cpp -------------------------------------------------------------------------------- /CodeTribe/DPMicrocourseSep/output.txt: -------------------------------------------------------------------------------- 1 | f(10) = 3 2 | 3 | 4 | Executed In: 0.12 ms -------------------------------------------------------------------------------- /CodeTribe/DPMicrocourseSep/tempCodeRunnerFile.cpp: -------------------------------------------------------------------------------- 1 | 2 | } -------------------------------------------------------------------------------- /CodeTribe/NumberTheorySept/cube_free: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CodeTribe/NumberTheorySept/cube_free -------------------------------------------------------------------------------- /CodeTribe/NumberTheorySept/euclid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CodeTribe/NumberTheorySept/euclid -------------------------------------------------------------------------------- /CodeTribe/NumberTheorySept/input.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CodeTribe/NumberTheorySept/output.txt: -------------------------------------------------------------------------------- 1 | gcd_euclid(126 = 6 2 | 3 | 4 | Executed In: 0.252 ms -------------------------------------------------------------------------------- /CodeTribe/Recorded/DPSeries/catalan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CodeTribe/Recorded/DPSeries/catalan -------------------------------------------------------------------------------- /CodeTribe/Recorded/DPSeries/fib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CodeTribe/Recorded/DPSeries/fib -------------------------------------------------------------------------------- /CodeTribe/Recorded/DPSeries/fib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CodeTribe/Recorded/DPSeries/fib.cpp -------------------------------------------------------------------------------- /CodeTribe/Recorded/DPSeries/input.txt: -------------------------------------------------------------------------------- 1 | 5 2 | 4 2 5 7 8 -------------------------------------------------------------------------------- /CodeTribe/Recorded/DPSeries/lcs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CodeTribe/Recorded/DPSeries/lcs -------------------------------------------------------------------------------- /CodeTribe/Recorded/DPSeries/lcs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CodeTribe/Recorded/DPSeries/lcs.cpp -------------------------------------------------------------------------------- /CodeTribe/Recorded/DPSeries/lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CodeTribe/Recorded/DPSeries/lis -------------------------------------------------------------------------------- /CodeTribe/Recorded/DPSeries/lis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CodeTribe/Recorded/DPSeries/lis.cpp -------------------------------------------------------------------------------- /CodeTribe/Recorded/DPSeries/output.txt: -------------------------------------------------------------------------------- 1 | 12 2 | 12 3 | 4 | 5 | Executed In: 0.239 ms -------------------------------------------------------------------------------- /CodeTribe/Recorded/DPSeries/rodcut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CodeTribe/Recorded/DPSeries/rodcut -------------------------------------------------------------------------------- /Codechef/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/Codechef/.DS_Store -------------------------------------------------------------------------------- /Codechef/ACM2018/ReductionGame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/Codechef/ACM2018/ReductionGame.cpp -------------------------------------------------------------------------------- /Codechef/ACM2018/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/Codechef/ACM2018/run -------------------------------------------------------------------------------- /Codechef/COOKOFF/OCT18/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/Codechef/COOKOFF/OCT18/run -------------------------------------------------------------------------------- /Codechef/COOKOFF/SEP18/ATM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/Codechef/COOKOFF/SEP18/ATM.cpp -------------------------------------------------------------------------------- /Codechef/Easy/CielAndReceipt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/Codechef/Easy/CielAndReceipt.cpp -------------------------------------------------------------------------------- /Codechef/Easy/PayingUp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/Codechef/Easy/PayingUp.cpp -------------------------------------------------------------------------------- /Codechef/Easy/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/Codechef/Easy/run -------------------------------------------------------------------------------- /Codechef/LONG/OCT18/Appy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/Codechef/LONG/OCT18/Appy.cpp -------------------------------------------------------------------------------- /Codechef/LONG/OCT18/Bricks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/Codechef/LONG/OCT18/Bricks.cpp -------------------------------------------------------------------------------- /Codechef/LONG/OCT18/Bricks1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/Codechef/LONG/OCT18/Bricks1.cpp -------------------------------------------------------------------------------- /Codechef/LONG/OCT18/ByteToBit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/Codechef/LONG/OCT18/ByteToBit.cpp -------------------------------------------------------------------------------- /Codechef/LONG/OCT18/HasanAndTrip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/Codechef/LONG/OCT18/HasanAndTrip.cpp -------------------------------------------------------------------------------- /Codechef/LONG/OCT18/MindSum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/Codechef/LONG/OCT18/MindSum.cpp -------------------------------------------------------------------------------- /Codechef/LONG/OCT18/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/Codechef/LONG/OCT18/run -------------------------------------------------------------------------------- /Codechef/LONG/OCT19/PhonePrices.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/Codechef/LONG/OCT19/PhonePrices.cpp -------------------------------------------------------------------------------- /Codechef/LUNCHTIME/SEPT18/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/Codechef/LUNCHTIME/SEPT18/run -------------------------------------------------------------------------------- /Codechef/LUNCHTIME/oCT18/niceness.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Codechef/LUNCHTIME/oCT18/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/Codechef/LUNCHTIME/oCT18/run -------------------------------------------------------------------------------- /Codechef/NumberTheory/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/Codechef/NumberTheory/run -------------------------------------------------------------------------------- /Codechef/NumberTheory/threedif.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/Codechef/NumberTheory/threedif.cpp -------------------------------------------------------------------------------- /Codechef/Practice/largefibonacci.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/Codechef/Practice/largefibonacci.cpp -------------------------------------------------------------------------------- /Codechef/SNACKDOWN/BuddyNim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/Codechef/SNACKDOWN/BuddyNim.cpp -------------------------------------------------------------------------------- /Codechef/SNACKDOWN/GraphOnArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/Codechef/SNACKDOWN/GraphOnArray.cpp -------------------------------------------------------------------------------- /Codechef/SNACKDOWN/GraphOnArray.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/Codechef/SNACKDOWN/GraphOnArray.java -------------------------------------------------------------------------------- /Codechef/SNACKDOWN/GraphOnArray1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/Codechef/SNACKDOWN/GraphOnArray1.cpp -------------------------------------------------------------------------------- /Codechef/SNACKDOWN/chefandtyping.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/Codechef/SNACKDOWN/chefandtyping.cpp -------------------------------------------------------------------------------- /Codechef/SNACKDOWN/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/Codechef/SNACKDOWN/run -------------------------------------------------------------------------------- /Codeforces/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/Codeforces/.DS_Store -------------------------------------------------------------------------------- /Codeforces/Bitmanipulation/Bits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/Codeforces/Bitmanipulation/Bits.cpp -------------------------------------------------------------------------------- /Codeforces/Bitmanipulation/LuckyNumber.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Codeforces/Bitmanipulation/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/Codeforces/Bitmanipulation/run -------------------------------------------------------------------------------- /Codeforces/FromStoT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/Codeforces/FromStoT.cpp -------------------------------------------------------------------------------- /Codeforces/Ladder3-A2oj/Array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/Codeforces/Ladder3-A2oj/Array.cpp -------------------------------------------------------------------------------- /Codeforces/Ladder3-A2oj/Drinks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/Codeforces/Ladder3-A2oj/Drinks.cpp -------------------------------------------------------------------------------- /Codeforces/Ladder3-A2oj/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/Codeforces/Ladder3-A2oj/run -------------------------------------------------------------------------------- /Codeforces/RemoveAProgression.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/Codeforces/RemoveAProgression.cpp -------------------------------------------------------------------------------- /Codeforces/YetAnotherCrosses.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/Codeforces/YetAnotherCrosses.cpp -------------------------------------------------------------------------------- /Codeforces/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/Codeforces/run -------------------------------------------------------------------------------- /Codeforces/watermelon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/Codeforces/watermelon.cpp -------------------------------------------------------------------------------- /CommonLounge/LeadGameCodechef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CommonLounge/LeadGameCodechef.cpp -------------------------------------------------------------------------------- /CommonLounge/Traithalon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CommonLounge/Traithalon.cpp -------------------------------------------------------------------------------- /CommonLounge/VOTERSLISTCodeChef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CommonLounge/VOTERSLISTCodeChef.cpp -------------------------------------------------------------------------------- /CommonLounge/Variation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CommonLounge/Variation.cpp -------------------------------------------------------------------------------- /CommonLounge/VideoGameCodeChef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CommonLounge/VideoGameCodeChef.cpp -------------------------------------------------------------------------------- /CommonLounge/Wormholes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CommonLounge/Wormholes.cpp -------------------------------------------------------------------------------- /CommonLounge/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CommonLounge/run -------------------------------------------------------------------------------- /CommonLounge/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CommonLounge/test.cpp -------------------------------------------------------------------------------- /CompetitivePractice/Maths/input.txt: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /CompetitivePractice/Maths/output.txt: -------------------------------------------------------------------------------- 1 | 12 -------------------------------------------------------------------------------- /CompetitivePractice/Maths/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CompetitivePractice/Maths/test -------------------------------------------------------------------------------- /CompetitivePractice/Maths/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CompetitivePractice/Maths/test.cpp -------------------------------------------------------------------------------- /CompetitiveProgramming/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CompetitiveProgramming/.DS_Store -------------------------------------------------------------------------------- /CompetitiveProgramming/BIT/bit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CompetitiveProgramming/BIT/bit.cpp -------------------------------------------------------------------------------- /CompetitiveProgramming/BigInteger/input.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CompetitiveProgramming/BigInteger/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CompetitiveProgramming/BinarySearch/SmallestGoodBase.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CompetitiveProgramming/BinarySearch/output.txt: -------------------------------------------------------------------------------- 1 | 91 -------------------------------------------------------------------------------- /CompetitiveProgramming/BitWise/input.txt: -------------------------------------------------------------------------------- 1 | love 2 | movie -------------------------------------------------------------------------------- /CompetitiveProgramming/BitWise/output.txt: -------------------------------------------------------------------------------- 1 | 7 2 | 3 3 | -------------------------------------------------------------------------------- /CompetitiveProgramming/BitWise/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CompetitiveProgramming/BitWise/run -------------------------------------------------------------------------------- /CompetitiveProgramming/CSOD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CompetitiveProgramming/CSOD.cpp -------------------------------------------------------------------------------- /CompetitiveProgramming/Combinatorics/output.txt: -------------------------------------------------------------------------------- 1 | 11 2 | 3 | 4 | Executed In: 0.147 ms -------------------------------------------------------------------------------- /CompetitiveProgramming/DSU/BiPartite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CompetitiveProgramming/DSU/BiPartite -------------------------------------------------------------------------------- /CompetitiveProgramming/DSU/Monkeys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CompetitiveProgramming/DSU/Monkeys -------------------------------------------------------------------------------- /CompetitiveProgramming/DSU/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CompetitiveProgramming/DSU/input.txt -------------------------------------------------------------------------------- /CompetitiveProgramming/DSU/output.txt: -------------------------------------------------------------------------------- 1 | NO 2 | YES 3 | NO 4 | 5 | 6 | Executed In: 2.74 ms -------------------------------------------------------------------------------- /CompetitiveProgramming/Difference Arrays/output.txt: -------------------------------------------------------------------------------- 1 | 0 2 | 1 3 | 4 4 | 2 5 | -------------------------------------------------------------------------------- /CompetitiveProgramming/DynamicProgramming/input.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CompetitiveProgramming/DynamicProgramming/output.txt: -------------------------------------------------------------------------------- 1 | 3 3 2 | 3 | Executed In: 0.119 ms -------------------------------------------------------------------------------- /CompetitiveProgramming/Graphs/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CompetitiveProgramming/Graphs/a.out -------------------------------------------------------------------------------- /CompetitiveProgramming/Graphs/input.txt: -------------------------------------------------------------------------------- 1 | 5 2 | 5 3 | 0 1 4 | 1 2 5 | 2 3 6 | 3 4 7 | 4 0 -------------------------------------------------------------------------------- /CompetitiveProgramming/Graphs/output.txt: -------------------------------------------------------------------------------- 1 | No 2 | 3 | Executed In: 0.169 ms -------------------------------------------------------------------------------- /CompetitiveProgramming/Graphs/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/CompetitiveProgramming/Graphs/run -------------------------------------------------------------------------------- /CompetitiveProgramming/Graphs/tempCodeRunnerFile.cpp: -------------------------------------------------------------------------------- 1 | std::cout<ptr = pa; -------------------------------------------------------------------------------- /UnacademyCourse/AdditionalConceptsCPPJuly2021/Lecture4/tempCodeRunnerFile.cpp: -------------------------------------------------------------------------------- 1 | 2 | std::string get_name() -------------------------------------------------------------------------------- /UnacademyCourse/AdditionalConceptsCPPJuly2021/Lecture6/input.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnacademyCourse/AdditionalConceptsCPPJuly2021/Lecture6/tempCodeRunnerFile.cpp: -------------------------------------------------------------------------------- 1 | t2.x = 10; -------------------------------------------------------------------------------- /UnacademyCourse/AdditionalConceptsCPPJuly2021/Lecture7/input.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnacademyCourse/AdditionalConceptsCPPJuly2021/Lecture8/input.txt: -------------------------------------------------------------------------------- 1 | 4 5 -------------------------------------------------------------------------------- /UnacademyCourse/AdditionalConceptsCPPJuly2021/Lecture9/output.txt: -------------------------------------------------------------------------------- 1 | 99.8 2 | 3 | Executed In: 0.275 ms -------------------------------------------------------------------------------- /UnacademyCourse/AdvanceCPP/Lecture10/input.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnacademyCourse/AdvanceCPP/Lecture11/input.txt: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /UnacademyCourse/AdvanceCPP/Lecture11/output.txt: -------------------------------------------------------------------------------- 1 | zero devision error happened 2 | 3 | Executed In: 0.21 ms -------------------------------------------------------------------------------- /UnacademyCourse/AdvanceCPP/Lecture12/input.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnacademyCourse/AdvanceCPP/Lecture14/input.txt: -------------------------------------------------------------------------------- 1 | 3 2 | 5 3 | 7 4 | 10 5 | -------------------------------------------------------------------------------- /UnacademyCourse/AdvanceCPP/Lecture14/output.txt: -------------------------------------------------------------------------------- 1 | 10 2 | 3 | Executed In: 0.18 ms -------------------------------------------------------------------------------- /UnacademyCourse/AdvanceCPP/Lecture15/input.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnacademyCourse/AdvanceCPP/Lecture15/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnacademyCourse/AdvanceCPP/Lecture2/input.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnacademyCourse/AdvanceCPP/Lecture3/input.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnacademyCourse/AdvanceCPP/Lecture4/output.txt: -------------------------------------------------------------------------------- 1 | 16 2 | 3 | 4 | Executed In: 0.124 ms -------------------------------------------------------------------------------- /UnacademyCourse/AdvanceCPP/Lecture5/input.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnacademyCourse/AdvanceCPP/Lecture6/input.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnacademyCourse/AdvanceCPP/Lecture6/output.txt: -------------------------------------------------------------------------------- 1 | 1 2 3 4 5 2 | 1 0 3 | 4 | 5 | Executed In: 0.111 ms -------------------------------------------------------------------------------- /UnacademyCourse/AdvanceCPP/Lecture7/input.txt: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /UnacademyCourse/AdvanceCPP/Lecture8/input.txt: -------------------------------------------------------------------------------- 1 | sanket singh -------------------------------------------------------------------------------- /UnacademyCourse/AdvanceCPP/Lecture8/output.txt: -------------------------------------------------------------------------------- 1 | sanket 2 | singh 3 | unacademy 4 | 5 | 6 | Executed In: 0.516 ms -------------------------------------------------------------------------------- /UnacademyCourse/AdvanceCPP/Lecture9/input.txt: -------------------------------------------------------------------------------- 1 | 5 2 | 1 3 | 2 4 | 3 5 | 4 6 | 5 -------------------------------------------------------------------------------- /UnacademyCourse/AdvanceCPP/Lecture9/output.txt: -------------------------------------------------------------------------------- 1 | 2 + i3 2 | 6 3 | 4 | 5 | Executed In: 0.249 ms -------------------------------------------------------------------------------- /UnacademyCourse/AdvancedDPDec/DigitDp/output.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 3 | Executed In: 0.119 ms -------------------------------------------------------------------------------- /UnacademyCourse/AdvancedDPDec/DigitDp/tempCodeRunnerFile.cpp: -------------------------------------------------------------------------------- 1 | (mod + -------------------------------------------------------------------------------- /UnacademyCourse/AdvancedDPDec/Dpwithbitmask/output.txt: -------------------------------------------------------------------------------- 1 | 0 2 | 3 | 4 | Executed In: 0.098 ms -------------------------------------------------------------------------------- /UnacademyCourse/AdvancedDSIP/GSS1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyCourse/AdvancedDSIP/GSS1 -------------------------------------------------------------------------------- /UnacademyCourse/AdvancedDSIP/Heap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyCourse/AdvancedDSIP/Heap -------------------------------------------------------------------------------- /UnacademyCourse/AdvancedDSIP/PythonToCPp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnacademyCourse/AdvancedDSIP/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyCourse/AdvancedDSIP/a.out -------------------------------------------------------------------------------- /UnacademyCourse/AdvancedDSIP/input.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnacademyCourse/AdvancedDSIP/output.txt: -------------------------------------------------------------------------------- 1 | 10 2 | 8 3 | 2 4 | 4 5 | 11 6 | 7 | 8 | Executed In: 0.238 ms -------------------------------------------------------------------------------- /UnacademyCourse/AdvancedDSIP/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyCourse/AdvancedDSIP/run -------------------------------------------------------------------------------- /UnacademyCourse/Algorithms/ABCDEF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyCourse/Algorithms/ABCDEF -------------------------------------------------------------------------------- /UnacademyCourse/Algorithms/Subsums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyCourse/Algorithms/Subsums -------------------------------------------------------------------------------- /UnacademyCourse/Algorithms/input.txt: -------------------------------------------------------------------------------- 1 | 3 -1 2 2 | 1 3 | -2 4 | 3 5 | -------------------------------------------------------------------------------- /UnacademyCourse/Algorithms/output.txt: -------------------------------------------------------------------------------- 1 | 5 -------------------------------------------------------------------------------- /UnacademyCourse/BasicDSA/BST.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyCourse/BasicDSA/BST.py -------------------------------------------------------------------------------- /UnacademyCourse/DPInterviewPrepMay2021/Lecture1/input.txt: -------------------------------------------------------------------------------- 1 | 6 2 | 4 2 7 18 1 4 -------------------------------------------------------------------------------- /UnacademyCourse/DPInterviewPrepMay2021/Lecture10/input.txt: -------------------------------------------------------------------------------- 1 | 4 2 | 5 10 6 12 3 | 2 -1 4 2 -------------------------------------------------------------------------------- /UnacademyCourse/DPInterviewPrepMay2021/Lecture10/output.txt: -------------------------------------------------------------------------------- 1 | 6 2 | 3 | Executed In: 0.205 ms -------------------------------------------------------------------------------- /UnacademyCourse/DPInterviewPrepMay2021/Lecture11/input.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 4 3 | 1 2 4 | 1 3 5 | -------------------------------------------------------------------------------- /UnacademyCourse/DPInterviewPrepMay2021/Lecture11/output.txt: -------------------------------------------------------------------------------- 1 | 16 2 | 3 | 4 | Executed In: 0.292 ms -------------------------------------------------------------------------------- /UnacademyCourse/DPInterviewPrepMay2021/Lecture12/output.txt: -------------------------------------------------------------------------------- 1 | 6 2 | 0 3 | 0 4 | 4 5 | 6 | 7 | Executed In: 67.006 ms -------------------------------------------------------------------------------- /UnacademyCourse/DPInterviewPrepMay2021/Lecture12/untitled: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnacademyCourse/DPInterviewPrepMay2021/Lecture13/input.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnacademyCourse/DPInterviewPrepMay2021/Lecture13/output.txt: -------------------------------------------------------------------------------- 1 | 16 2 | 3 | Executed In: 0.259 ms -------------------------------------------------------------------------------- /UnacademyCourse/DPInterviewPrepMay2021/Lecture2/input.txt: -------------------------------------------------------------------------------- 1 | 27 -------------------------------------------------------------------------------- /UnacademyCourse/DPInterviewPrepMay2021/Lecture2/output.txt: -------------------------------------------------------------------------------- 1 | 5 2 | 3 | Executed In: 0.226 ms -------------------------------------------------------------------------------- /UnacademyCourse/DPInterviewPrepMay2021/Lecture4/output.txt: -------------------------------------------------------------------------------- 1 | 3 2 | 1 3 | 4 | 5 | Executed In: 0.232 ms -------------------------------------------------------------------------------- /UnacademyCourse/DPInterviewPrepMay2021/Lecture5/input.txt: -------------------------------------------------------------------------------- 1 | aab 2 | c*a*b -------------------------------------------------------------------------------- /UnacademyCourse/DPInterviewPrepMay2021/Lecture5/output.txt: -------------------------------------------------------------------------------- 1 | 0 2 | 3 | Executed In: 0.201 ms -------------------------------------------------------------------------------- /UnacademyCourse/DPInterviewPrepMay2021/Lecture6/input.txt: -------------------------------------------------------------------------------- 1 | 5 2 | 4 2 3 1 3 -------------------------------------------------------------------------------- /UnacademyCourse/DPInterviewPrepMay2021/Lecture7/output.txt: -------------------------------------------------------------------------------- 1 | 7 2 | 3 | Executed In: 0.133 ms -------------------------------------------------------------------------------- /UnacademyCourse/DPInterviewPrepMay2021/Lecture8/output.txt: -------------------------------------------------------------------------------- 1 | 10 2 | 154 3 | 4 | 5 | Executed In: 0.277 ms -------------------------------------------------------------------------------- /UnacademyCourse/DPInterviewPrepMay2021/Lecture9/input.txt: -------------------------------------------------------------------------------- 1 | 1 1 3 2 | -------------------------------------------------------------------------------- /UnacademyCourse/DiscreteMaths/Lecture2/input.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnacademyCourse/DiscreteMaths/Lecture2/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnacademyCourse/DiscreteMaths/Lecture3/input.txt: -------------------------------------------------------------------------------- 1 | 2 2 | 5 3 | 100 -------------------------------------------------------------------------------- /UnacademyCourse/DiscreteMaths/Lecture3/output.txt: -------------------------------------------------------------------------------- 1 | 2 2 | 27 3 | 4 | 5 | Executed In: 0.147 ms -------------------------------------------------------------------------------- /UnacademyCourse/DiscreteMaths/Lecture9/input.txt: -------------------------------------------------------------------------------- 1 | 1 1 3 2 | -------------------------------------------------------------------------------- /UnacademyCourse/DiscreteMathsJan2022/Lecture1/readme.md: -------------------------------------------------------------------------------- 1 | Files for Discrete maths Jan 2022 -------------------------------------------------------------------------------- /UnacademyCourse/GraphMarch/MST/mergesort.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnacademyCourse/GraphMarch/MST/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyCourse/GraphMarch/MST/run -------------------------------------------------------------------------------- /UnacademyCourse/GraphsOct/Lecture10/output.txt: -------------------------------------------------------------------------------- 1 | 3 2 | 3 | 4 | Executed In: 0.218 ms -------------------------------------------------------------------------------- /UnacademyCourse/GraphsOct/Lecture11/input.txt: -------------------------------------------------------------------------------- 1 | 5 2 | 1 1 2 3 -------------------------------------------------------------------------------- /UnacademyCourse/GraphsOct/Lecture12/output.txt: -------------------------------------------------------------------------------- 1 | 14 2 | 3 | 4 | Executed In: 0.086 ms -------------------------------------------------------------------------------- /UnacademyCourse/GraphsOct/Lecture13/output.txt: -------------------------------------------------------------------------------- 1 | 2 2 | 3 | 4 | Executed In: 0.547 ms -------------------------------------------------------------------------------- /UnacademyCourse/GraphsOct/Lecture2/input.txt: -------------------------------------------------------------------------------- 1 | 3 2 | 1 1 2 3 | 2 3 4 | 1 3 5 | -------------------------------------------------------------------------------- /UnacademyCourse/GraphsOct/Lecture2/output.txt: -------------------------------------------------------------------------------- 1 | 0 2 | 3 | 4 | Executed In: 0.115 ms -------------------------------------------------------------------------------- /UnacademyCourse/GraphsOct/Lecture2/tempCodeRunnerFile.cpp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /UnacademyCourse/GraphsOct/Lecture4/output.txt: -------------------------------------------------------------------------------- 1 | No 2 | Yes 3 | 4 | 5 | Executed In: 0.303 ms -------------------------------------------------------------------------------- /UnacademyCourse/GraphsOct/Lecture5/input.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnacademyCourse/GraphsOct/Lecture5/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnacademyCourse/GraphsOct/Lecture5/tempCodeRunnerFile.cpp: -------------------------------------------------------------------------------- 1 | 2 | { -------------------------------------------------------------------------------- /UnacademyCourse/GraphsOct/Lecture6/input.txt: -------------------------------------------------------------------------------- 1 | 4 2 | a 3 | b 4 | ab 5 | d 6 | -------------------------------------------------------------------------------- /UnacademyCourse/GraphsOct/Lecture6/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnacademyCourse/GraphsOct/Lecture7/input.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnacademyCourse/GraphsOct/Lecture7/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnacademyCourse/GraphsOct/Lecture8/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnacademyCourse/GreedyOct/Lecture2/input.txt: -------------------------------------------------------------------------------- 1 | 5 2 | 4 2 3 1 5 3 | 2 -------------------------------------------------------------------------------- /UnacademyCourse/GreedyOct/Lecture2/output.txt: -------------------------------------------------------------------------------- 1 | 5 4 3 1 2 2 | 3 | Executed In: 0.105 ms -------------------------------------------------------------------------------- /UnacademyCourse/GreedyOct/Lecture2/tempCodeRunnerFile.cpp: -------------------------------------------------------------------------------- 1 | 2 | int el = n; -------------------------------------------------------------------------------- /UnacademyCourse/GreedyOct/Lecture4/input.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 3 3 3 | bba -------------------------------------------------------------------------------- /UnacademyCourse/GreedyOct/Lecture4/output.txt: -------------------------------------------------------------------------------- 1 | aab 2 | 3 | 4 | Executed In: 0.103 ms -------------------------------------------------------------------------------- /UnacademyCourse/GreedyOct/Lecture5/output.txt: -------------------------------------------------------------------------------- 1 | 33 2 | 3 | 4 | Executed In: 0.383 ms -------------------------------------------------------------------------------- /UnacademyCourse/GreedyOct/Lecture6/input.txt: -------------------------------------------------------------------------------- 1 | aaabaccbcde -------------------------------------------------------------------------------- /UnacademyCourse/GreedyOct/Lecture6/tempCodeRunnerFile.cpp: -------------------------------------------------------------------------------- 1 | 2 | }; -------------------------------------------------------------------------------- /UnacademyCourse/IntroToProgrammingCPIT/Lecture2/tempCodeRunnerFile.cpp: -------------------------------------------------------------------------------- 1 | 2 | std::cin>>x; -------------------------------------------------------------------------------- /UnacademyCourse/MathsForIPMay2021/Lecture1/input.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnacademyCourse/MathsForIPMay2021/Lecture1/output.txt: -------------------------------------------------------------------------------- 1 | 6 2 | 3 | Executed In: 0.189 ms -------------------------------------------------------------------------------- /UnacademyCourse/MathsForIPMay2021/Lecture2/input.txt: -------------------------------------------------------------------------------- 1 | 3 2 2 2 | abc 3 | ab 4 | -------------------------------------------------------------------------------- /UnacademyCourse/MathsForIPMay2021/Lecture3/output.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 0 3 | 1 4 | 2 5 | 6 | 7 | Executed In: 0.371 ms -------------------------------------------------------------------------------- /UnacademyCourse/MathsForIPMay2021/Lecture4/output.txt: -------------------------------------------------------------------------------- 1 | 21 2 | 3 | Executed In: 0.21 ms -------------------------------------------------------------------------------- /UnacademyCourse/MathsForIPMay2021/Lecture5/input.txt: -------------------------------------------------------------------------------- 1 | 2 2 | 3 | 5 2 4 | 5 | 1000 2 -------------------------------------------------------------------------------- /UnacademyCourse/MathsForIPMay2021/Lecture6/input.txt: -------------------------------------------------------------------------------- 1 | 2 2 | 1 3 | 12 -------------------------------------------------------------------------------- /UnacademyCourse/MathsForIPMay2021/Lecture6/output.txt: -------------------------------------------------------------------------------- 1 | 1.00 2 | 37.24 3 | 4 | 5 | Executed In: 0.40 ms -------------------------------------------------------------------------------- /UnacademyCourse/MathsForIPMay2021/Lecture8/input.txt: -------------------------------------------------------------------------------- 1 | 34@ -------------------------------------------------------------------------------- /UnacademyCourse/MathsForIPMay2021/Lecture8/output.txt: -------------------------------------------------------------------------------- 1 | 639405629 2 | 3 | 4 | Executed In: 1199.81 ms -------------------------------------------------------------------------------- /UnacademyCourse/NumberTheoryJuly2021/Lecture1/input.txt: -------------------------------------------------------------------------------- 1 | 2 2 | 1 10 3 | 3 5 -------------------------------------------------------------------------------- /UnacademyCourse/NumberTheoryJuly2021/Lecture11/output.txt: -------------------------------------------------------------------------------- 1 | 100 2 | 3 | 4 | Executed In: 5.924 ms -------------------------------------------------------------------------------- /UnacademyCourse/NumberTheoryJuly2021/Lecture12/input.txt: -------------------------------------------------------------------------------- 1 | 8 -------------------------------------------------------------------------------- /UnacademyCourse/NumberTheoryJuly2021/Lecture12/output.txt: -------------------------------------------------------------------------------- 1 | fib(n) = 21 2 | 3 | 4 | Executed In: 0.241 ms -------------------------------------------------------------------------------- /UnacademyCourse/NumberTheoryJuly2021/Lecture13/input.txt: -------------------------------------------------------------------------------- 1 | 5 2 | 12 3 | 17 4 | 36 5 | 49 6 | 9 -------------------------------------------------------------------------------- /UnacademyCourse/NumberTheoryJuly2021/Lecture15/input.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnacademyCourse/NumberTheoryJuly2021/Lecture15/output.txt: -------------------------------------------------------------------------------- 1 | 5 2 | 3 | 4 | Executed In: 0.176 ms -------------------------------------------------------------------------------- /UnacademyCourse/NumberTheoryJuly2021/Lecture2/input.txt: -------------------------------------------------------------------------------- 1 | 2 2 | 4 3 | 6 -------------------------------------------------------------------------------- /UnacademyCourse/NumberTheoryJuly2021/Lecture2/tempCodeRunnerFile.cpp: -------------------------------------------------------------------------------- 1 | k -------------------------------------------------------------------------------- /UnacademyCourse/NumberTheoryJuly2021/Lecture3/output.txt: -------------------------------------------------------------------------------- 1 | 2 2 | 2 3 | 0 4 | 8 5 | 1 6 | 7 | 8 | Executed In: 77.659 ms -------------------------------------------------------------------------------- /UnacademyCourse/NumberTheoryJuly2021/Lecture3/tempCodeRunnerFile.cpp: -------------------------------------------------------------------------------- 1 | 2 | } -------------------------------------------------------------------------------- /UnacademyCourse/NumberTheoryJuly2021/Lecture4/input.txt: -------------------------------------------------------------------------------- 1 | 2 2 | 3 | 5 2 4 | 5 | 1000 2 -------------------------------------------------------------------------------- /UnacademyCourse/NumberTheoryJuly2021/Lecture5/input.txt: -------------------------------------------------------------------------------- 1 | 7 19 -------------------------------------------------------------------------------- /UnacademyCourse/NumberTheoryJuly2021/Lecture5/output.txt: -------------------------------------------------------------------------------- 1 | gcd_(45 = 9 2 | 3 | 4 | Executed In: 0.24 ms -------------------------------------------------------------------------------- /UnacademyCourse/PrepBackendCourseJuly2021/Lecture2/tempCodeRunnerFile.js: -------------------------------------------------------------------------------- 1 | x.name -------------------------------------------------------------------------------- /UnacademyCourse/PrepBackendCourseJuly2021/Lecture5/tempCodeRunnerFile.js: -------------------------------------------------------------------------------- 1 | 2 | } -------------------------------------------------------------------------------- /UnacademyCourse/PythonToCPP/DMA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyCourse/PythonToCPP/DMA.cpp -------------------------------------------------------------------------------- /UnacademyCourse/PythonToCPP/Demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyCourse/PythonToCPP/Demo.cpp -------------------------------------------------------------------------------- /UnacademyCourse/PythonToCPP/Demo.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyCourse/PythonToCPP/Demo.s -------------------------------------------------------------------------------- /UnacademyCourse/PythonToCPP/Demo1.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyCourse/PythonToCPP/Demo1.s -------------------------------------------------------------------------------- /UnacademyCourse/PythonToCPP/OptimisationDemo/compilerOptimization.cpp: -------------------------------------------------------------------------------- 1 | int main() { 2 | char arr[] = "Hello world"; 3 | return 0; 4 | } -------------------------------------------------------------------------------- /UnacademyCourse/PythonToCPP/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyCourse/PythonToCPP/a.out -------------------------------------------------------------------------------- /UnacademyCourse/PythonToCPP/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyCourse/PythonToCPP/run -------------------------------------------------------------------------------- /UnacademyCourse/PythonToCPP/source.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyCourse/PythonToCPP/source.o -------------------------------------------------------------------------------- /UnacademyCourse/RecursionAndBacktrackingShort/Lecture1/output.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | 3 4 | 4 5 | 5 6 | 7 | 8 | Executed In: 0.299 ms -------------------------------------------------------------------------------- /UnacademyCourse/RecursionAndBacktrackingShort/Lecture4/output.txt: -------------------------------------------------------------------------------- 1 | 4 2 | 3 | 4 | Executed In: 0.371 ms -------------------------------------------------------------------------------- /UnacademyCourse/RecursionAndBacktrackingShort/Lecture4/tempCodeRunnerFile.cpp: -------------------------------------------------------------------------------- 1 | 2 | mazePath(i+1, j, out+"D", m, n); -------------------------------------------------------------------------------- /UnacademyCourse/RecursionAndBacktrackingShort/Lecture5/input.txt: -------------------------------------------------------------------------------- 1 | 4 -------------------------------------------------------------------------------- /UnacademyCourse/RecursionAndBacktrackingShort/Lecture5/output.txt: -------------------------------------------------------------------------------- 1 | No tour 2 | 0 3 | 4 | 5 | Executed In: 2.324 ms -------------------------------------------------------------------------------- /UnacademyCourse/RecursionAndBacktrackingShort/Lecture6/input.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnacademyCourse/RecursionBacktrackingINtroDPCPAug21/Lecture1/input.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnacademyCourse/RecursionBacktrackingINtroDPCPAug21/Lecture10/output.txt: -------------------------------------------------------------------------------- 1 | Lis = 6 2 | 3 | 4 | Executed In: 0.144 ms -------------------------------------------------------------------------------- /UnacademyCourse/RecursionBacktrackingINtroDPCPAug21/Lecture11/output.txt: -------------------------------------------------------------------------------- 1 | 17 2 | 3 | 4 | Executed In: 0.927 ms -------------------------------------------------------------------------------- /UnacademyCourse/RecursionBacktrackingINtroDPCPAug21/Lecture11/tempCodeRunnerFile.cpp: -------------------------------------------------------------------------------- 1 | u -------------------------------------------------------------------------------- /UnacademyCourse/RecursionBacktrackingINtroDPCPAug21/Lecture12/output.txt: -------------------------------------------------------------------------------- 1 | 800 2 | 3 | 4 | Executed In: 0.351 ms -------------------------------------------------------------------------------- /UnacademyCourse/RecursionBacktrackingINtroDPCPAug21/Lecture15/input.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnacademyCourse/RecursionBacktrackingINtroDPCPAug21/Lecture16/input.txt: -------------------------------------------------------------------------------- 1 | 2 2 | 18 19 3 | 3 4 | 40 60 20 -------------------------------------------------------------------------------- /UnacademyCourse/RecursionBacktrackingINtroDPCPAug21/Lecture16/output.txt: -------------------------------------------------------------------------------- 1 | 342 2 | 2400 3 | 4 | 5 | Executed In: 0.314 ms -------------------------------------------------------------------------------- /UnacademyCourse/RecursionBacktrackingINtroDPCPAug21/Lecture16/tempCodeRunnerFile.cpp: -------------------------------------------------------------------------------- 1 | 2 | ll result = 0; -------------------------------------------------------------------------------- /UnacademyCourse/RecursionBacktrackingINtroDPCPAug21/Lecture2/input.txt: -------------------------------------------------------------------------------- 1 | 5 2 | 5 4 3 2 1 -------------------------------------------------------------------------------- /UnacademyCourse/RecursionBacktrackingINtroDPCPAug21/Lecture3/input.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnacademyCourse/RecursionBacktrackingINtroDPCPAug21/Lecture3/output.txt: -------------------------------------------------------------------------------- 1 | aba 2 | aab 3 | baa 4 | 5 | 6 | Executed In: 0.382 ms -------------------------------------------------------------------------------- /UnacademyCourse/RecursionBacktrackingINtroDPCPAug21/Lecture4/input.txt: -------------------------------------------------------------------------------- 1 | 4 -------------------------------------------------------------------------------- /UnacademyCourse/RecursionBacktrackingINtroDPCPAug21/Lecture5/input.txt: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /UnacademyCourse/RecursionBacktrackingINtroDPCPAug21/Lecture6/output.txt: -------------------------------------------------------------------------------- 1 | 40 2 | 3 | 4 | Executed In: 0.29 ms -------------------------------------------------------------------------------- /UnacademyCourse/RecursionBacktrackingINtroDPCPAug21/Lecture7/input.txt: -------------------------------------------------------------------------------- 1 | 3 9 2 | 2 3 5 -------------------------------------------------------------------------------- /UnacademyCourse/RecursionBacktrackingINtroDPCPAug21/Lecture7/output.txt: -------------------------------------------------------------------------------- 1 | 3 2 | 3 | 4 | Executed In: 0.326 ms -------------------------------------------------------------------------------- /UnacademyCourse/RecursionBacktrackingINtroDPCPAug21/Lecture9/output.txt: -------------------------------------------------------------------------------- 1 | 4 2 | 3 | 4 | Executed In: 0.35 ms -------------------------------------------------------------------------------- /UnacademyCourse/RelevelVideos/inf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyCourse/RelevelVideos/inf.js -------------------------------------------------------------------------------- /UnacademyCourse/STL/Vectors/input.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 4 2 3 | 10 20 15 28 4 | -------------------------------------------------------------------------------- /UnacademyCourse/STL/Vectors/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyCourse/STL/Vectors/run -------------------------------------------------------------------------------- /UnacademyCourse/SegmentTreeAndFenwickTree/Lecture1/tempCodeRunnerFile.cpp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /UnacademyCourse/SegmentTreeAndFenwickTree/Lecture2/input.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -1 2 3 3 | 1 4 | 1 2 -------------------------------------------------------------------------------- /UnacademyCourse/SegmentTreeAndFenwickTree/Lecture2/output.txt: -------------------------------------------------------------------------------- 1 | 2 2 | 3 | 4 | Executed In: 0.133 ms -------------------------------------------------------------------------------- /UnacademyCourse/SegmentTreeAndFenwickTree/Lecture7/tempCodeRunnerFile.cpp: -------------------------------------------------------------------------------- 1 | right -------------------------------------------------------------------------------- /UnacademyCourse/StringsGameTheoryCG/StringMatching/output.txt: -------------------------------------------------------------------------------- 1 | 0 2 | 3 | Executed In: 0.29 ms -------------------------------------------------------------------------------- /UnacademyCourse/StringsGameTheoryCG/Tries/input.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnacademyCourse/StringsGameTheoryCG/Tries/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnacademyCourse/TriesAndSparsetableJuly2021/Lecture2/output.txt: -------------------------------------------------------------------------------- 1 | 127 2 | 3 | Executed In: 0.304 ms -------------------------------------------------------------------------------- /UnacademyCourse/TriesAndSparsetableJuly2021/Lecture3/input.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 5 2 3 | 4 1 3 2 7 -------------------------------------------------------------------------------- /UnacademyCourse/TriesAndSparsetableJuly2021/Lecture3/output.txt: -------------------------------------------------------------------------------- 1 | 3 2 | 3 | 4 | Executed In: 0.234 ms -------------------------------------------------------------------------------- /UnacademyCourse/TriesAndSparsetableJuly2021/Lecture8/output.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 3 | 4 | Executed In: 0.26 ms -------------------------------------------------------------------------------- /UnacademyCourse/TriesAndSparsetableJuly2021/Lecture8/tempCodeRunnerFile.cpp: -------------------------------------------------------------------------------- 1 | 2 | file_i_o(); -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyFreeLiveClass/.DS_Store -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/Adjbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyFreeLiveClass/Adjbc -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/Adjbc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyFreeLiveClass/Adjbc.cpp -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/Basic C++/output.txt: -------------------------------------------------------------------------------- 1 | hello 2 | 3 | Executed In: 0.119 ms -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/Basic C++/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyFreeLiveClass/Basic C++/run -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/Basic C++/s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyFreeLiveClass/Basic C++/s -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/CoinProbab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyFreeLiveClass/CoinProbab -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/CountGridPath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyFreeLiveClass/CountGridPath -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/CountingSort: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyFreeLiveClass/CountingSort -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/DPINtroMicroCourse/Lecture2/output.txt: -------------------------------------------------------------------------------- 1 | 6 2 | 89 3 | 1 4 | 5 | 6 | Executed In: 0.778 ms -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/DPINtroMicroCourse/Lecture5/output.txt: -------------------------------------------------------------------------------- 1 | 3 2 | 3 | 4 | Executed In: 0.457 ms -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/EuclidsAlgo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyFreeLiveClass/EuclidsAlgo -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/Factorial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyFreeLiveClass/Factorial -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/Factorial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyFreeLiveClass/Factorial.cpp -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/FibDp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyFreeLiveClass/FibDp -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/FibDp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyFreeLiveClass/FibDp.cpp -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/GNYR09F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyFreeLiveClass/GNYR09F -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/GNYR09F.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyFreeLiveClass/GNYR09F.cpp -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/Grid1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyFreeLiveClass/Grid1 -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/Grid1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyFreeLiveClass/Grid1.cpp -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/HashMap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyFreeLiveClass/HashMap.py -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/Hostel_Visit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyFreeLiveClass/Hostel_Visit -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/JULKA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyFreeLiveClass/JULKA -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/JULKA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyFreeLiveClass/JULKA.cpp -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/Kruskals: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyFreeLiveClass/Kruskals -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/Kruskals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyFreeLiveClass/Kruskals.cpp -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/LISBS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyFreeLiveClass/LISBS.cpp -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/LittleGirl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyFreeLiveClass/LittleGirl -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/LongestPath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyFreeLiveClass/LongestPath -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/Matching: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyFreeLiveClass/Matching -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/Matching.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyFreeLiveClass/Matching.cpp -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/MinStepsToOne: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyFreeLiveClass/MinStepsToOne -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/NOTATRI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyFreeLiveClass/NOTATRI -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/NOTATRI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyFreeLiveClass/NOTATRI.cpp -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/Pathtracing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyFreeLiveClass/Pathtracing -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/Pattern1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyFreeLiveClass/Pattern1.cpp -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/Pattern2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyFreeLiveClass/Pattern2.cpp -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/PointerSeries/Lecture3/input.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/PointerSeries/Lecture3/tempCodeRunnerFile.cpp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/Rabbits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyFreeLiveClass/Rabbits.cpp -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/Random_Walk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyFreeLiveClass/Random_Walk -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/RecursionYT/tempCodeRunnerFile.cpp: -------------------------------------------------------------------------------- 1 | 2 | void file_i_o() -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/STLSeriesYT/Lecture1/input.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/STLSeriesYT/Lecture2/input.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/STLSeriesYT/Lecture3/input.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/STLSeriesYT/Lecture3/output.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | Executed In: 0.398 ms -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/STLSeriesYT/Lecture3/tempCodeRunnerFile.cpp: -------------------------------------------------------------------------------- 1 | 2 | s4[1] = 'A'; -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/STl_Algo_Demo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyFreeLiveClass/STl_Algo_Demo -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/SUBSUMS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyFreeLiveClass/SUBSUMS -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/SUBSUMS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyFreeLiveClass/SUBSUMS.cpp -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/SeinField.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyFreeLiveClass/SeinField.cpp -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/SortingMay2021/input.txt: -------------------------------------------------------------------------------- 1 | 8 2 | 4 0 7 11 3 5 20 16 -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/SortingMay2021/output.txt: -------------------------------------------------------------------------------- 1 | 0 3 4 5 7 11 16 20 2 | 3 | 4 | Executed In: 0.173 ms -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/SortingSearchingMicroCourseSep/output.txt: -------------------------------------------------------------------------------- 1 | 5 6 2 6 9 0 -1 2 | 3 | 4 | Executed In: 0.261 ms -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/String_STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyFreeLiveClass/String_STL -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/TreesCPIT/Lesson1/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyFreeLiveClass/a.out -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/arrays.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyFreeLiveClass/arrays.cpp -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/coins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyFreeLiveClass/coins -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/coins.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyFreeLiveClass/coins.cpp -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/fence: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyFreeLiveClass/fence -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/fence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyFreeLiveClass/fence.cpp -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/fib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyFreeLiveClass/fib -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/fib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyFreeLiveClass/fib.cpp -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/frog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyFreeLiveClass/frog -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/frog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyFreeLiveClass/frog.cpp -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/heap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyFreeLiveClass/heap -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/heap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyFreeLiveClass/heap.cpp -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyFreeLiveClass/input.txt -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/julka.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyFreeLiveClass/julka.java -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/kordredlcs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyFreeLiveClass/kordredlcs -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/labrats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyFreeLiveClass/labrats.py -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/lcs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyFreeLiveClass/lcs -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/lcs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyFreeLiveClass/lcs.cpp -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/lcsfor2string: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyFreeLiveClass/lcsfor2string -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/lexico.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyFreeLiveClass/lexico.cpp -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyFreeLiveClass/lis -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/lis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyFreeLiveClass/lis.cpp -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/mazepath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyFreeLiveClass/mazepath.cpp -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/mincoinchange: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyFreeLiveClass/mincoinchange -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/oddtopic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyFreeLiveClass/oddtopic.cpp -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/output.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 3 | Executed In: 0.916 ms -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/primes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyFreeLiveClass/primes.cpp -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/ratmaze.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyFreeLiveClass/ratmaze.cpp -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyFreeLiveClass/run -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/run.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyFreeLiveClass/run.out -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/seinfield: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyFreeLiveClass/seinfield -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/sones: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyFreeLiveClass/sones -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/sones.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyFreeLiveClass/sones.cpp -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/splitwise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyFreeLiveClass/splitwise.cpp -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/tableof5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyFreeLiveClass/tableof5.cpp -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/tempCodeRunnerFile.cpp: -------------------------------------------------------------------------------- 1 | gcd_euclid -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyFreeLiveClass/test -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyFreeLiveClass/test.cpp -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/test1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyFreeLiveClass/test1.cpp -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyFreeLiveClass/time.cpp -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyFreeLiveClass/time.py -------------------------------------------------------------------------------- /UnacademyFreeLiveClass/twodarray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/UnacademyFreeLiveClass/twodarray.cpp -------------------------------------------------------------------------------- /assign8b/Q1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/assign8b/Q1.java -------------------------------------------------------------------------------- /assign8b/Q10.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/assign8b/Q10.java -------------------------------------------------------------------------------- /assign8b/Q2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/assign8b/Q2.java -------------------------------------------------------------------------------- /assign8b/Q3.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/assign8b/Q3.java -------------------------------------------------------------------------------- /assign8b/Q4.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/assign8b/Q4.java -------------------------------------------------------------------------------- /assign8b/Q5.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/assign8b/Q5.java -------------------------------------------------------------------------------- /assign8b/Q6.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/assign8b/Q6.class -------------------------------------------------------------------------------- /assign8b/Q6.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/assign8b/Q6.java -------------------------------------------------------------------------------- /assign8b/Q7.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/assign8b/Q7.java -------------------------------------------------------------------------------- /assign8b/Q8.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/assign8b/Q8.java -------------------------------------------------------------------------------- /assign8b/Q9.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/assign8b/Q9.java -------------------------------------------------------------------------------- /graph_lectures/DSU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/graph_lectures/DSU -------------------------------------------------------------------------------- /graph_lectures/DSU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/graph_lectures/DSU.cpp -------------------------------------------------------------------------------- /graph_lectures/DSU_min_max_size: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/graph_lectures/DSU_min_max_size -------------------------------------------------------------------------------- /graph_lectures/DSU_min_max_size.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/graph_lectures/DSU_min_max_size.cpp -------------------------------------------------------------------------------- /graph_lectures/G.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/graph_lectures/G.cpp -------------------------------------------------------------------------------- /graph_lectures/adjacency_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/graph_lectures/adjacency_list -------------------------------------------------------------------------------- /graph_lectures/adjacency_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/graph_lectures/adjacency_list.cpp -------------------------------------------------------------------------------- /graph_lectures/adjancency_map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/graph_lectures/adjancency_map -------------------------------------------------------------------------------- /graph_lectures/adjancency_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/graph_lectures/adjancency_map.cpp -------------------------------------------------------------------------------- /graph_lectures/allpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/graph_lectures/allpath -------------------------------------------------------------------------------- /graph_lectures/allpath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/graph_lectures/allpath.cpp -------------------------------------------------------------------------------- /graph_lectures/any_path: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/graph_lectures/any_path -------------------------------------------------------------------------------- /graph_lectures/any_path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/graph_lectures/any_path.cpp -------------------------------------------------------------------------------- /graph_lectures/bipartite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/graph_lectures/bipartite.cpp -------------------------------------------------------------------------------- /graph_lectures/clone_graph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/graph_lectures/clone_graph.cpp -------------------------------------------------------------------------------- /graph_lectures/coloring_a_border.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/graph_lectures/coloring_a_border.cpp -------------------------------------------------------------------------------- /graph_lectures/connected_components: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/graph_lectures/connected_components -------------------------------------------------------------------------------- /graph_lectures/dijkstra.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/graph_lectures/dijkstra.cpp -------------------------------------------------------------------------------- /graph_lectures/floodfill/apple.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/graph_lectures/floodfill/apple.txt -------------------------------------------------------------------------------- /graph_lectures/floodfill/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/graph_lectures/floodfill/run -------------------------------------------------------------------------------- /graph_lectures/floodfill/square.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/graph_lectures/floodfill/square.txt -------------------------------------------------------------------------------- /graph_lectures/keys_and_room.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/graph_lectures/keys_and_room.cpp -------------------------------------------------------------------------------- /graph_lectures/kruskals: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/graph_lectures/kruskals -------------------------------------------------------------------------------- /graph_lectures/kruskals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/graph_lectures/kruskals.cpp -------------------------------------------------------------------------------- /graph_lectures/number_of_islands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/graph_lectures/number_of_islands.cpp -------------------------------------------------------------------------------- /graph_lectures/prims.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/graph_lectures/prims.cpp -------------------------------------------------------------------------------- /graph_lectures/prims.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/graph_lectures/prims.txt -------------------------------------------------------------------------------- /graph_lectures/rotten_oranges.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/graph_lectures/rotten_oranges.cpp -------------------------------------------------------------------------------- /graph_lectures/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/graph_lectures/run -------------------------------------------------------------------------------- /graph_lectures/shortest_path_bfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/graph_lectures/shortest_path_bfs -------------------------------------------------------------------------------- /graph_lectures/shortest_path_bfs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/graph_lectures/shortest_path_bfs.cpp -------------------------------------------------------------------------------- /graph_lectures/tempCodeRunnerFile.cpp: -------------------------------------------------------------------------------- 1 | o of queries -------------------------------------------------------------------------------- /graph_lectures/weidhted_adj_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/graph_lectures/weidhted_adj_list.cpp -------------------------------------------------------------------------------- /greedy_lectures/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/greedy_lectures/.DS_Store -------------------------------------------------------------------------------- /greedy_lectures/build/Debug/outDebug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/greedy_lectures/build/Debug/outDebug -------------------------------------------------------------------------------- /greedy_lectures/meeting_rooms_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/greedy_lectures/meeting_rooms_2.cpp -------------------------------------------------------------------------------- /greedy_lectures/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/greedy_lectures/run -------------------------------------------------------------------------------- /greedy_lectures/sliding_wondow_media: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/greedy_lectures/sliding_wondow_media -------------------------------------------------------------------------------- /heap_lectures/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/heap_lectures/.DS_Store -------------------------------------------------------------------------------- /heap_lectures/ConvertArrayToHeap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/heap_lectures/ConvertArrayToHeap.cpp -------------------------------------------------------------------------------- /heap_lectures/heapsort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/heap_lectures/heapsort.cpp -------------------------------------------------------------------------------- /heap_lectures/inbuild_pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/heap_lectures/inbuild_pq -------------------------------------------------------------------------------- /heap_lectures/inbuild_pq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/heap_lectures/inbuild_pq.cpp -------------------------------------------------------------------------------- /heap_lectures/maxheap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/heap_lectures/maxheap -------------------------------------------------------------------------------- /heap_lectures/maxheap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/heap_lectures/maxheap.cpp -------------------------------------------------------------------------------- /heap_lectures/rmid2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/heap_lectures/rmid2 -------------------------------------------------------------------------------- /heap_lectures/rmid2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/heap_lectures/rmid2.cpp -------------------------------------------------------------------------------- /heap_lectures/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/heap_lectures/run -------------------------------------------------------------------------------- /heap_lectures/tempCodeRunnerFile.cpp: -------------------------------------------------------------------------------- 1 | /* code */ -------------------------------------------------------------------------------- /output.txt: -------------------------------------------------------------------------------- 1 | abc 2 | acb 3 | bac 4 | bca 5 | cab 6 | cba 7 | 8 | 9 | Executed In: 0.144 ms -------------------------------------------------------------------------------- /permutation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/permutation -------------------------------------------------------------------------------- /permutation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/permutation.cpp -------------------------------------------------------------------------------- /recursive_revision_lecture/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/recursive_revision_lecture/run -------------------------------------------------------------------------------- /run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/run -------------------------------------------------------------------------------- /videos/Searching/BinarySearch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/videos/Searching/BinarySearch -------------------------------------------------------------------------------- /videos/Searching/BinarySearch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/videos/Searching/BinarySearch.cpp -------------------------------------------------------------------------------- /videos/Searching/LinearSearch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/videos/Searching/LinearSearch -------------------------------------------------------------------------------- /videos/Searching/LinearSearch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/CppCompetitiveRepository/HEAD/videos/Searching/LinearSearch.cpp --------------------------------------------------------------------------------