├── .github └── workflows │ ├── greetings.yml │ └── lint_python.yml ├── .gitignore ├── 10 Days of JavaScript ├── DAY_0-Hello-World.js ├── DAY_1-Arithmetic-Operators.js ├── DAY_2-Conditional-statements.js ├── DAY_3-Arrays.js ├── DAY_4-Classes.js ├── DAY_5-Inheritance.js ├── DAY_6-Bitwise-Operators.js ├── DAY_7-Regular-expressions.js ├── DAY_8-Button.js └── DAY_9-Binary-Calculator.js ├── 10 Days of Statistics ├── D0-Mean-Median-Mode.py ├── D0-Weighted-Mean.py ├── D1-Interquartile-Range.py ├── D1-Standard-Deviation.py ├── D1-quartiles.py ├── D2-Basic-Probability.txt ├── D2-More-Dice.txt ├── D3-Cards-of-Same-Suit.txt ├── D3-Conditional-Probability.txt ├── D3-Drawing-Marbles.txt ├── D4-Binomial-Distribution1.py ├── D4-Binomial-Distribution2.py ├── D4-Geometric-Distribution1.py ├── D4-Geometric-Distribution2.py ├── D5-Normal-Distribution1.py ├── D5-Normal-Distribution2.py ├── D5-Poisson-Distribution1.py ├── D5-Poisson-Distribution2.py ├── D6-The-Central-Limit-Theorem1.py ├── D6-The-Central-Limit-Theorem2.py ├── D6-The-Central-Limit-Theorem3.py ├── D7-Pearson-Correlation-Coefficient1.py ├── D7-Spearmans-Rank-Correlation-Coefficient.py ├── D8-Least-Square-Regression-Line.py └── D8-Pearson-Correlation-Coefficient2.txt ├── 30 Days Of Code (Java) ├── Day-0-HelloWorld.java ├── Day-1-DataTypes.java └── Readme.md ├── 30 Days of Code (C) ├── D0-Hello-World.c ├── D1-Data-Types.c ├── D2-Operators.c ├── D3-Intro-to-Conditional-Statements.c ├── D5-Loops.c ├── D6-Let's-Review.c ├── D7-Arrays.c ├── D9-Recursion-3.c ├── Hello, World.c ├── README.md └── loops.c ├── 30 Days of Code (CPP) └── D0-Hello_World.cpp ├── 30 Days of Code (Kotlin) ├── Readme.md ├── day0-HelloWorld.kt ├── day10-binaryNumbers.kt ├── day11-2dArrays.kt ├── day2-Operators.kt ├── day20-sorting.kt ├── day26-NestedLogic.kt ├── day28-Regex.kt ├── day29-bitwiseAnd.kt ├── day3-conditional-statements.kt ├── day5-loops.kt ├── day6-LetsReview.kt ├── day7-Arrays.kt ├── day8-dictionaries-and-maps.kt └── day9-recursion.kt ├── 30 Days of Code (Python) ├── D0-Hello-World.py ├── D1-Data-Types.py ├── D10-Binary-Numbers.py ├── D11-2D-Arrays.py ├── D12-Inheritance.py ├── D13-Abstract-Class.py ├── D14-Scope.py ├── D15-Linked-List.py ├── D16-Exceptions.py ├── D17-More-Exceptions.py ├── D18-Queues-and-Stacks.py ├── D19-Interfaces.py ├── D2-Operators.py ├── D20-Sorting.py ├── D22-Binary-Search-Trees.py ├── D23-BST-Level-Order-Traversal.py ├── D24-More-Linked-Lists.py ├── D25-Running-Time-and-Complexity.py ├── D26-Nested-Logic.py ├── D27-Testing.py ├── D28-RegEx,-Patterns,-and-Intro-to-Databases.py ├── D29-Bitwise-AND.py ├── D3-Intro-to-Conditional-Statements.py ├── D4-Class-vs-Instance.py ├── D5-Loops.py ├── D6-Let's-Review.py ├── D7-Arrays.py ├── D8-Dictionaries-and-Maps.py ├── D9-Recursion-3.py └── README.md ├── 30 Days of FAANG ├── SDE-PROBLEMS.txt ├── solution_1-10.txt ├── solution_11-20.txt └── solution_21-30.txt ├── Algorithms ├── .DS_Store ├── A_Very_Big_Sum.py ├── BirthdayCakeCandles.py ├── CountSort1.cpp ├── CrosswordPuzzle.py ├── Debugging │ ├── Smart Number.py │ └── XOR Strings.py ├── Diagonal Difference.js ├── Divisible_sum_pairs.py ├── Greedy │ └── PriyankaAndToys.java ├── Intro to Tutorial Challenges.py ├── Marc's Cakewalk.py ├── Minimum Absolute Difference in an Array.py ├── ModifiedKaprekarNumbers.py ├── Permuting Two Arrays.py ├── PlusMinus.py ├── README.md ├── Sansa_And_XOR.py ├── Save-the-Prisoner.c ├── Solve Me First.py ├── Solve_Me_First.py ├── Staircase.py ├── TimeConversion.py ├── Xor-sequence.py ├── apple_and_orange.py ├── between_two_sets.py ├── bill_divison.py ├── breaking_the_records.py ├── day_of_the_programmer.py ├── encryption.cs ├── findingTopKFrequentlyMentionedKeywords.js ├── grading_students.py ├── kadanes_algorithm.cpp ├── longestCommonSubsequence.py ├── migratory_birds.py ├── number_line_jumps.py └── sub-array_division.py ├── Artificial Intelligence └── README.md ├── C ├── C Program to find the largest Element in an Array using Recursion.c ├── Print_Pattern.c ├── README.md ├── SmallTrianglesLargeTriangles.c ├── VariadicFunctions.c ├── digitfrequency.c ├── find the largest Element in an Array using Recursion.c └── max_out_of_4.c ├── CPP ├── Accessing Inherited Function.cpp ├── Attribute_Parser.cpp ├── Bitwise-AND.cpp ├── CircularArrayRotation.cpp ├── Class_Template_Specialization.cpp ├── Coin Change Problem.cpp ├── ColoringBallsProblem.cpp ├── CycleDetection.cpp ├── Deque-STL.cpp ├── Drawing_Book.cpp ├── Jesse_and_Cookies.cpp ├── Largest_Bitonic_Subarray.cpp ├── MagicSpells.cpp ├── Matrix.cpp ├── MessagesOrder.cpp ├── Multi-Level-Inheritance.cpp ├── README.md ├── RecursiveDigitSum.cpp ├── Restaurant.cpp ├── Sales_by_match.cpp ├── The Maximum Subarray.cpp ├── TheCoinChangeProblem.cpp ├── TheMaximumSubarray.cpp ├── ThePowerSum.cpp ├── ice_cream_parlor.cpp ├── operatorOverloading.cpp ├── pointer.cpp ├── snakes_ladder_game.cpp └── sortcolors_hackerrank.cpp ├── Certification Exams ├── Python Basic1.py ├── Python Basic2.py └── README.md ├── Data Structures ├── Arrays │ ├── LeftRotation.py │ └── SparseArray.py ├── README.md └── Stacks │ └── BalancedBrackets.py ├── Databases ├── README.md └── Relational Algebra │ ├── 01-BasicsOfSetsAndRelations.md │ └── 02-BasicsOfSetsAndRelations.md ├── Functional Programming ├── README.md ├── fibonacci_numbers.hs └── string_mingling.hs ├── Interview-Prep-Challenge └── Warm-Up │ ├── Counting-Valleys.py │ └── Sales-By-March.py ├── Java ├── B-3-Sum.java ├── JavaIfElse.java ├── Java_Anagrams │ └── Anagram.java ├── Java_ArrayList │ ├── Solution.java │ └── Solution_try_catch.java ├── Java_Basic_Loop │ └── Solution.java ├── Java_Comparator │ └── Solution.java ├── Java_Currency_Formatter │ └── Solution.java ├── Java_DynamicArray │ └── Solution.java ├── Java_ExtraLongFactorials │ └── Solution.java ├── Java_Left_Rotation │ └── LeftRotationSolution.java ├── Java_List │ └── Solution.java ├── Java_Maximum_Draws │ └── Solution.java ├── Java_Median_Of_Two_Sorted_Arrays │ └── Solution.java ├── Java_Merge_Sorted_Array │ └── Solution.java ├── Java_MiniMaxSum │ └── Solution.java ├── Java_PatternSyntaxChecker │ └── PatternSyntaxChecker.java ├── Java_PrimeChecker │ └── Solution.java ├── Java_Regex │ └── Java_Regex.java ├── Java_Sort │ └── Solution.java ├── Java_Stack_Parenthesis │ └── Solution.java ├── Java_Stdin_and_Stdout(1) │ └── Solution.java ├── Java_Stdin_and_Stdout(2) │ └── Solution.java ├── Java_Substring │ └── java_substring │ │ └── Solution.java ├── Java_Substring_Compare │ ├── Solution.java │ └── Solution2.java ├── Java_Sum_Two_Integers │ └── Solution.java ├── Java_Visitor_Pattern │ └── java_visitor_pattern.java ├── Java_Welcome_to_Java! │ └── Solution.java └── README.md ├── LICENSE ├── Linux Shell ├── A Personalized Echo.sh ├── Arithmetic Operations.sh ├── Comparing Numbers.sh ├── Getting started with conditionals.sh ├── Let's Echo.sh ├── Looping and Skipping.sh ├── Looping with Numbers.sh ├── Middle of a Text File.sh ├── More on Conditionals.sh ├── README.md └── The World of Numbers.sh ├── Mathematics ├── Army Game.java ├── Find the Point.java ├── HandShake.java ├── Maximum Draws.cpp ├── Minimum Height Triangle.cpp ├── README.md ├── Special Multiple.cpp ├── Summing the N series.cpp └── maximumDraws.java ├── Problem Solving ├── C │ ├── AppleAndOranges.c │ ├── Repeated_strings.c │ └── forming_a_magic_square.c ├── CPP │ ├── Balanced Brackets.cpp │ ├── CatsMouse.cpp │ ├── Fair_Rations.cpp │ ├── Magic_Square.cpp │ ├── Organizing_Containers_of_Balls.cpp │ ├── Pairs.cpp │ ├── commonChild.cpp │ ├── flatland_spaces_tations.cpp │ └── larry'sArray.cpp ├── Java │ ├── Angry-professor.java │ ├── Picking-Numbers.java │ └── luck-balance.java ├── Julia │ ├── README.md │ └── staircase.jl ├── Python │ ├── AVeryBigSum.py │ ├── AlmostSorted.py │ ├── BeautifulBinaryString.py │ ├── BeautifulDayAtTheMovies.py │ ├── BeautifulTriplets.py │ ├── BirthdayCakeCandles.py │ ├── BirthdayChocolate.py │ ├── BreakingtheRecords.py │ ├── DayoftheProgrammer.py │ ├── DesignerPDFViewer.py │ ├── DivisibleSumPairs.py │ ├── FindDigits.py │ ├── FraudulentActivityNotification.py │ ├── FunnyString.py │ ├── GradingProblem.py │ ├── JourneyToTheMoon.py │ ├── Lily'sHomework.py │ ├── MarcsCakewalk.py │ ├── MigratoryBirds.py │ ├── MinimumDistances.py │ ├── OrangeandApple.py │ ├── TheCoinChangeProblem.py │ ├── TimeConversion.py │ ├── bon-appetit.py │ ├── counting-valley.py │ └── staircase.py ├── README.md └── Swift │ ├── CaesarCipher.playground │ ├── Contents.swift │ ├── contents.xcplayground │ └── playground.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ └── camiloibarrayepes.xcuserdatad │ │ └── UserInterfaceState.xcuserstate │ └── appleAndOranges.playground │ ├── Contents.swift │ ├── contents.xcplayground │ └── playground.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ └── camiloibarrayepes.xcuserdatad │ └── UserInterfaceState.xcuserstate ├── Python ├── 1-Overlapping Subproblems Property in Dynamic Programming.py ├── 2-Optimal Substructure Property in Dynamic Programming.py ├── 3-Longest Increasing Subsequence.py ├── 4-Longest Common Subsequence.py ├── 5-EditDistance.py ├── 6-Minimum Distance Between two points.py ├── 7-Coin Change.py ├── 8-Bionimal Coefficients.py ├── 9-0-1 Knapsack Problem.py ├── AlphabetRangoli.py ├── ArithmeticOperators.py ├── Athlete Sort.py ├── BeautifulDaysAtTheMovies.py ├── BirthdayCakeCandles.py ├── BubbleSort.py ├── CalendarModule.py ├── Capitalize!.py ├── Climbing_the_Leaderboard.py ├── CollectionsCounter.py ├── CollectionsNamedtuple.py ├── CollectionsOrderedDict.py ├── Compare the Triplets.py ├── Compress the String.py ├── Count of n digit numbers whose sum of digits equals to given sum.py ├── Count ways to reach the n’th stair.py ├── Day-of-the-Programmer.py ├── DefaultDict_Tutorial.py ├── DesignerDoorMat.py ├── Else-If.py ├── Exceptions.py ├── ExtraLongFactorials.py ├── EyeAndIdentity.py ├── Find a string.py ├── FindDigits.py ├── FindSecondRunnerUp.py ├── FindingThePercentage.py ├── FunnyString.py ├── HeapsAlgorithm.py ├── HelloWorld.py ├── Incorrect_Regex.py ├── Introduction to Sets.py ├── IntroductionToSets.py ├── Iterables and Iterators.py ├── ItertoolsCombinations.py ├── ItertoolsCombinations_with_replacement.py ├── ItertoolsPermutations.py ├── ItertoolsProduct.py ├── Jumping-on-the-clouds-revisited.py ├── LeapYear.py ├── LeftRotation.py ├── ListComprehensions.py ├── Loops.py ├── Matrix_Script.py ├── Maximize It!.py ├── MergeTheTools.py ├── MergeTwoSortedArray.py ├── ModDivmod.py ├── Mutations.py ├── NestedLists.py ├── No Idea! - Find your Happiness.py ├── NumberToEnglish.py ├── Partition problem.py ├── Piling_up.py ├── Polar Coordinates.py ├── Power - Mod Power.py ├── QueueUsingTwoStacks.py ├── README.md ├── Sales by Match.py ├── Santa Clause.py ├── Set .discard(), .remove() & .pop().py ├── Set.add().py ├── SongOfPi.py ├── Staircase.py ├── String Validators.py ├── String_Split_and_Join.py ├── StringsplitandJoin.py ├── SymmetricDifference.py ├── Text Alignment.py ├── Text Wrap.py ├── TheMinionGame.py ├── TheTimeInWords.py ├── Tiling Problem.py ├── Time Delta.py ├── TimeDelta.py ├── Total number of non-decreasing numbers with n digits.py ├── TriangleQuest.py ├── TriangleQuest2.py ├── Tuples.py ├── Validating Email Addresses With a Filter.py ├── What's Your Name.py ├── Word Order.py ├── Write_a_function.py ├── ZigZagSequence.py ├── abbreviation.py ├── alphabet_rangoli.py ├── apple-and-orange.py ├── balancingBrackets.py ├── bigger-is-greater.py ├── binarySearch.py ├── botclean.py ├── company-logo.py ├── fast_fibonacci.py ├── o_First_non-repeating_integer.py ├── o_sw_Add Upto a Value.py ├── piling-up.py ├── practice.py ├── princes.py ├── sWAPcASE.py ├── tictactoe │ └── ticpactoe.py └── tron │ ├── README.md │ ├── simplewin.gif │ ├── tie.gif │ ├── tron.py │ └── win.gif ├── README.md ├── Regex └── README.md ├── Ruby ├── README.md ├── apple_and_orange.rb ├── ruby-case.rb ├── ruby-lambdas.rb └── ruby-until.rb └── SQL ├── README.md ├── asianPopulation.sql ├── average-population.sql ├── contest-leaderboard.sql ├── japaneseCityAttributes.sql ├── japaneseCityNames.sql ├── ollivander's-inventory.sql ├── placements.sql ├── print-prime-numbers.sql ├── revisiting-select-query-2.sql ├── selectAll.sql ├── selectById.sql ├── symmetric-pairs.sql ├── usaPopulation.sql ├── weather-observation-station-1.sql ├── weather-observation-station-18.sql ├── weather-observation-station-19.sql ├── weather-observation-station-20.sql ├── weather-observation-station-3.sql ├── weather-observation-station-4.sql ├── weather-observation-station-5.sql ├── weather-observation-station-7.sql └── weather-observation-station-8.sql /.github/workflows/greetings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/.github/workflows/greetings.yml -------------------------------------------------------------------------------- /.github/workflows/lint_python.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/.github/workflows/lint_python.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/.gitignore -------------------------------------------------------------------------------- /10 Days of JavaScript/DAY_0-Hello-World.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/10 Days of JavaScript/DAY_0-Hello-World.js -------------------------------------------------------------------------------- /10 Days of JavaScript/DAY_1-Arithmetic-Operators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/10 Days of JavaScript/DAY_1-Arithmetic-Operators.js -------------------------------------------------------------------------------- /10 Days of JavaScript/DAY_2-Conditional-statements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/10 Days of JavaScript/DAY_2-Conditional-statements.js -------------------------------------------------------------------------------- /10 Days of JavaScript/DAY_3-Arrays.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/10 Days of JavaScript/DAY_3-Arrays.js -------------------------------------------------------------------------------- /10 Days of JavaScript/DAY_4-Classes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/10 Days of JavaScript/DAY_4-Classes.js -------------------------------------------------------------------------------- /10 Days of JavaScript/DAY_5-Inheritance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/10 Days of JavaScript/DAY_5-Inheritance.js -------------------------------------------------------------------------------- /10 Days of JavaScript/DAY_6-Bitwise-Operators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/10 Days of JavaScript/DAY_6-Bitwise-Operators.js -------------------------------------------------------------------------------- /10 Days of JavaScript/DAY_7-Regular-expressions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/10 Days of JavaScript/DAY_7-Regular-expressions.js -------------------------------------------------------------------------------- /10 Days of JavaScript/DAY_8-Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/10 Days of JavaScript/DAY_8-Button.js -------------------------------------------------------------------------------- /10 Days of JavaScript/DAY_9-Binary-Calculator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/10 Days of JavaScript/DAY_9-Binary-Calculator.js -------------------------------------------------------------------------------- /10 Days of Statistics/D0-Mean-Median-Mode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/10 Days of Statistics/D0-Mean-Median-Mode.py -------------------------------------------------------------------------------- /10 Days of Statistics/D0-Weighted-Mean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/10 Days of Statistics/D0-Weighted-Mean.py -------------------------------------------------------------------------------- /10 Days of Statistics/D1-Interquartile-Range.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/10 Days of Statistics/D1-Interquartile-Range.py -------------------------------------------------------------------------------- /10 Days of Statistics/D1-Standard-Deviation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/10 Days of Statistics/D1-Standard-Deviation.py -------------------------------------------------------------------------------- /10 Days of Statistics/D1-quartiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/10 Days of Statistics/D1-quartiles.py -------------------------------------------------------------------------------- /10 Days of Statistics/D2-Basic-Probability.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/10 Days of Statistics/D2-Basic-Probability.txt -------------------------------------------------------------------------------- /10 Days of Statistics/D2-More-Dice.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/10 Days of Statistics/D2-More-Dice.txt -------------------------------------------------------------------------------- /10 Days of Statistics/D3-Cards-of-Same-Suit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/10 Days of Statistics/D3-Cards-of-Same-Suit.txt -------------------------------------------------------------------------------- /10 Days of Statistics/D3-Conditional-Probability.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/10 Days of Statistics/D3-Conditional-Probability.txt -------------------------------------------------------------------------------- /10 Days of Statistics/D3-Drawing-Marbles.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/10 Days of Statistics/D3-Drawing-Marbles.txt -------------------------------------------------------------------------------- /10 Days of Statistics/D4-Binomial-Distribution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/10 Days of Statistics/D4-Binomial-Distribution1.py -------------------------------------------------------------------------------- /10 Days of Statistics/D4-Binomial-Distribution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/10 Days of Statistics/D4-Binomial-Distribution2.py -------------------------------------------------------------------------------- /10 Days of Statistics/D4-Geometric-Distribution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/10 Days of Statistics/D4-Geometric-Distribution1.py -------------------------------------------------------------------------------- /10 Days of Statistics/D4-Geometric-Distribution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/10 Days of Statistics/D4-Geometric-Distribution2.py -------------------------------------------------------------------------------- /10 Days of Statistics/D5-Normal-Distribution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/10 Days of Statistics/D5-Normal-Distribution1.py -------------------------------------------------------------------------------- /10 Days of Statistics/D5-Normal-Distribution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/10 Days of Statistics/D5-Normal-Distribution2.py -------------------------------------------------------------------------------- /10 Days of Statistics/D5-Poisson-Distribution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/10 Days of Statistics/D5-Poisson-Distribution1.py -------------------------------------------------------------------------------- /10 Days of Statistics/D5-Poisson-Distribution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/10 Days of Statistics/D5-Poisson-Distribution2.py -------------------------------------------------------------------------------- /10 Days of Statistics/D6-The-Central-Limit-Theorem1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/10 Days of Statistics/D6-The-Central-Limit-Theorem1.py -------------------------------------------------------------------------------- /10 Days of Statistics/D6-The-Central-Limit-Theorem2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/10 Days of Statistics/D6-The-Central-Limit-Theorem2.py -------------------------------------------------------------------------------- /10 Days of Statistics/D6-The-Central-Limit-Theorem3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/10 Days of Statistics/D6-The-Central-Limit-Theorem3.py -------------------------------------------------------------------------------- /10 Days of Statistics/D7-Pearson-Correlation-Coefficient1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/10 Days of Statistics/D7-Pearson-Correlation-Coefficient1.py -------------------------------------------------------------------------------- /10 Days of Statistics/D7-Spearmans-Rank-Correlation-Coefficient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/10 Days of Statistics/D7-Spearmans-Rank-Correlation-Coefficient.py -------------------------------------------------------------------------------- /10 Days of Statistics/D8-Least-Square-Regression-Line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/10 Days of Statistics/D8-Least-Square-Regression-Line.py -------------------------------------------------------------------------------- /10 Days of Statistics/D8-Pearson-Correlation-Coefficient2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/10 Days of Statistics/D8-Pearson-Correlation-Coefficient2.txt -------------------------------------------------------------------------------- /30 Days Of Code (Java)/Day-0-HelloWorld.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/30 Days Of Code (Java)/Day-0-HelloWorld.java -------------------------------------------------------------------------------- /30 Days Of Code (Java)/Day-1-DataTypes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/30 Days Of Code (Java)/Day-1-DataTypes.java -------------------------------------------------------------------------------- /30 Days Of Code (Java)/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/30 Days Of Code (Java)/Readme.md -------------------------------------------------------------------------------- /30 Days of Code (C)/D0-Hello-World.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/30 Days of Code (C)/D0-Hello-World.c -------------------------------------------------------------------------------- /30 Days of Code (C)/D1-Data-Types.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/30 Days of Code (C)/D1-Data-Types.c -------------------------------------------------------------------------------- /30 Days of Code (C)/D2-Operators.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/30 Days of Code (C)/D2-Operators.c -------------------------------------------------------------------------------- /30 Days of Code (C)/D3-Intro-to-Conditional-Statements.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/30 Days of Code (C)/D3-Intro-to-Conditional-Statements.c -------------------------------------------------------------------------------- /30 Days of Code (C)/D5-Loops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/30 Days of Code (C)/D5-Loops.c -------------------------------------------------------------------------------- /30 Days of Code (C)/D6-Let's-Review.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/30 Days of Code (C)/D6-Let's-Review.c -------------------------------------------------------------------------------- /30 Days of Code (C)/D7-Arrays.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/30 Days of Code (C)/D7-Arrays.c -------------------------------------------------------------------------------- /30 Days of Code (C)/D9-Recursion-3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/30 Days of Code (C)/D9-Recursion-3.c -------------------------------------------------------------------------------- /30 Days of Code (C)/Hello, World.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/30 Days of Code (C)/Hello, World.c -------------------------------------------------------------------------------- /30 Days of Code (C)/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/30 Days of Code (C)/README.md -------------------------------------------------------------------------------- /30 Days of Code (C)/loops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/30 Days of Code (C)/loops.c -------------------------------------------------------------------------------- /30 Days of Code (CPP)/D0-Hello_World.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/30 Days of Code (CPP)/D0-Hello_World.cpp -------------------------------------------------------------------------------- /30 Days of Code (Kotlin)/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/30 Days of Code (Kotlin)/Readme.md -------------------------------------------------------------------------------- /30 Days of Code (Kotlin)/day0-HelloWorld.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/30 Days of Code (Kotlin)/day0-HelloWorld.kt -------------------------------------------------------------------------------- /30 Days of Code (Kotlin)/day10-binaryNumbers.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/30 Days of Code (Kotlin)/day10-binaryNumbers.kt -------------------------------------------------------------------------------- /30 Days of Code (Kotlin)/day11-2dArrays.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/30 Days of Code (Kotlin)/day11-2dArrays.kt -------------------------------------------------------------------------------- /30 Days of Code (Kotlin)/day2-Operators.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/30 Days of Code (Kotlin)/day2-Operators.kt -------------------------------------------------------------------------------- /30 Days of Code (Kotlin)/day20-sorting.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/30 Days of Code (Kotlin)/day20-sorting.kt -------------------------------------------------------------------------------- /30 Days of Code (Kotlin)/day26-NestedLogic.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/30 Days of Code (Kotlin)/day26-NestedLogic.kt -------------------------------------------------------------------------------- /30 Days of Code (Kotlin)/day28-Regex.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/30 Days of Code (Kotlin)/day28-Regex.kt -------------------------------------------------------------------------------- /30 Days of Code (Kotlin)/day29-bitwiseAnd.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/30 Days of Code (Kotlin)/day29-bitwiseAnd.kt -------------------------------------------------------------------------------- /30 Days of Code (Kotlin)/day3-conditional-statements.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/30 Days of Code (Kotlin)/day3-conditional-statements.kt -------------------------------------------------------------------------------- /30 Days of Code (Kotlin)/day5-loops.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/30 Days of Code (Kotlin)/day5-loops.kt -------------------------------------------------------------------------------- /30 Days of Code (Kotlin)/day6-LetsReview.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/30 Days of Code (Kotlin)/day6-LetsReview.kt -------------------------------------------------------------------------------- /30 Days of Code (Kotlin)/day7-Arrays.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/30 Days of Code (Kotlin)/day7-Arrays.kt -------------------------------------------------------------------------------- /30 Days of Code (Kotlin)/day8-dictionaries-and-maps.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/30 Days of Code (Kotlin)/day8-dictionaries-and-maps.kt -------------------------------------------------------------------------------- /30 Days of Code (Kotlin)/day9-recursion.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/30 Days of Code (Kotlin)/day9-recursion.kt -------------------------------------------------------------------------------- /30 Days of Code (Python)/D0-Hello-World.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/30 Days of Code (Python)/D0-Hello-World.py -------------------------------------------------------------------------------- /30 Days of Code (Python)/D1-Data-Types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/30 Days of Code (Python)/D1-Data-Types.py -------------------------------------------------------------------------------- /30 Days of Code (Python)/D10-Binary-Numbers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/30 Days of Code (Python)/D10-Binary-Numbers.py -------------------------------------------------------------------------------- /30 Days of Code (Python)/D11-2D-Arrays.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/30 Days of Code (Python)/D11-2D-Arrays.py -------------------------------------------------------------------------------- /30 Days of Code (Python)/D12-Inheritance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/30 Days of Code (Python)/D12-Inheritance.py -------------------------------------------------------------------------------- /30 Days of Code (Python)/D13-Abstract-Class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/30 Days of Code (Python)/D13-Abstract-Class.py -------------------------------------------------------------------------------- /30 Days of Code (Python)/D14-Scope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/30 Days of Code (Python)/D14-Scope.py -------------------------------------------------------------------------------- /30 Days of Code (Python)/D15-Linked-List.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/30 Days of Code (Python)/D15-Linked-List.py -------------------------------------------------------------------------------- /30 Days of Code (Python)/D16-Exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/30 Days of Code (Python)/D16-Exceptions.py -------------------------------------------------------------------------------- /30 Days of Code (Python)/D17-More-Exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/30 Days of Code (Python)/D17-More-Exceptions.py -------------------------------------------------------------------------------- /30 Days of Code (Python)/D18-Queues-and-Stacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/30 Days of Code (Python)/D18-Queues-and-Stacks.py -------------------------------------------------------------------------------- /30 Days of Code (Python)/D19-Interfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/30 Days of Code (Python)/D19-Interfaces.py -------------------------------------------------------------------------------- /30 Days of Code (Python)/D2-Operators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/30 Days of Code (Python)/D2-Operators.py -------------------------------------------------------------------------------- /30 Days of Code (Python)/D20-Sorting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/30 Days of Code (Python)/D20-Sorting.py -------------------------------------------------------------------------------- /30 Days of Code (Python)/D22-Binary-Search-Trees.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/30 Days of Code (Python)/D22-Binary-Search-Trees.py -------------------------------------------------------------------------------- /30 Days of Code (Python)/D23-BST-Level-Order-Traversal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/30 Days of Code (Python)/D23-BST-Level-Order-Traversal.py -------------------------------------------------------------------------------- /30 Days of Code (Python)/D24-More-Linked-Lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/30 Days of Code (Python)/D24-More-Linked-Lists.py -------------------------------------------------------------------------------- /30 Days of Code (Python)/D25-Running-Time-and-Complexity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/30 Days of Code (Python)/D25-Running-Time-and-Complexity.py -------------------------------------------------------------------------------- /30 Days of Code (Python)/D26-Nested-Logic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/30 Days of Code (Python)/D26-Nested-Logic.py -------------------------------------------------------------------------------- /30 Days of Code (Python)/D27-Testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/30 Days of Code (Python)/D27-Testing.py -------------------------------------------------------------------------------- /30 Days of Code (Python)/D28-RegEx,-Patterns,-and-Intro-to-Databases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/30 Days of Code (Python)/D28-RegEx,-Patterns,-and-Intro-to-Databases.py -------------------------------------------------------------------------------- /30 Days of Code (Python)/D29-Bitwise-AND.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/30 Days of Code (Python)/D29-Bitwise-AND.py -------------------------------------------------------------------------------- /30 Days of Code (Python)/D3-Intro-to-Conditional-Statements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/30 Days of Code (Python)/D3-Intro-to-Conditional-Statements.py -------------------------------------------------------------------------------- /30 Days of Code (Python)/D4-Class-vs-Instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/30 Days of Code (Python)/D4-Class-vs-Instance.py -------------------------------------------------------------------------------- /30 Days of Code (Python)/D5-Loops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/30 Days of Code (Python)/D5-Loops.py -------------------------------------------------------------------------------- /30 Days of Code (Python)/D6-Let's-Review.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/30 Days of Code (Python)/D6-Let's-Review.py -------------------------------------------------------------------------------- /30 Days of Code (Python)/D7-Arrays.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/30 Days of Code (Python)/D7-Arrays.py -------------------------------------------------------------------------------- /30 Days of Code (Python)/D8-Dictionaries-and-Maps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/30 Days of Code (Python)/D8-Dictionaries-and-Maps.py -------------------------------------------------------------------------------- /30 Days of Code (Python)/D9-Recursion-3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/30 Days of Code (Python)/D9-Recursion-3.py -------------------------------------------------------------------------------- /30 Days of Code (Python)/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/30 Days of Code (Python)/README.md -------------------------------------------------------------------------------- /30 Days of FAANG/SDE-PROBLEMS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/30 Days of FAANG/SDE-PROBLEMS.txt -------------------------------------------------------------------------------- /30 Days of FAANG/solution_1-10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/30 Days of FAANG/solution_1-10.txt -------------------------------------------------------------------------------- /30 Days of FAANG/solution_11-20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/30 Days of FAANG/solution_11-20.txt -------------------------------------------------------------------------------- /30 Days of FAANG/solution_21-30.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/30 Days of FAANG/solution_21-30.txt -------------------------------------------------------------------------------- /Algorithms/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Algorithms/.DS_Store -------------------------------------------------------------------------------- /Algorithms/A_Very_Big_Sum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Algorithms/A_Very_Big_Sum.py -------------------------------------------------------------------------------- /Algorithms/BirthdayCakeCandles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Algorithms/BirthdayCakeCandles.py -------------------------------------------------------------------------------- /Algorithms/CountSort1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Algorithms/CountSort1.cpp -------------------------------------------------------------------------------- /Algorithms/CrosswordPuzzle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Algorithms/CrosswordPuzzle.py -------------------------------------------------------------------------------- /Algorithms/Debugging/Smart Number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Algorithms/Debugging/Smart Number.py -------------------------------------------------------------------------------- /Algorithms/Debugging/XOR Strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Algorithms/Debugging/XOR Strings.py -------------------------------------------------------------------------------- /Algorithms/Diagonal Difference.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Algorithms/Diagonal Difference.js -------------------------------------------------------------------------------- /Algorithms/Divisible_sum_pairs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Algorithms/Divisible_sum_pairs.py -------------------------------------------------------------------------------- /Algorithms/Greedy/PriyankaAndToys.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Algorithms/Greedy/PriyankaAndToys.java -------------------------------------------------------------------------------- /Algorithms/Intro to Tutorial Challenges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Algorithms/Intro to Tutorial Challenges.py -------------------------------------------------------------------------------- /Algorithms/Marc's Cakewalk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Algorithms/Marc's Cakewalk.py -------------------------------------------------------------------------------- /Algorithms/Minimum Absolute Difference in an Array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Algorithms/Minimum Absolute Difference in an Array.py -------------------------------------------------------------------------------- /Algorithms/ModifiedKaprekarNumbers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Algorithms/ModifiedKaprekarNumbers.py -------------------------------------------------------------------------------- /Algorithms/Permuting Two Arrays.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Algorithms/Permuting Two Arrays.py -------------------------------------------------------------------------------- /Algorithms/PlusMinus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Algorithms/PlusMinus.py -------------------------------------------------------------------------------- /Algorithms/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Algorithms/README.md -------------------------------------------------------------------------------- /Algorithms/Sansa_And_XOR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Algorithms/Sansa_And_XOR.py -------------------------------------------------------------------------------- /Algorithms/Save-the-Prisoner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Algorithms/Save-the-Prisoner.c -------------------------------------------------------------------------------- /Algorithms/Solve Me First.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Algorithms/Solve Me First.py -------------------------------------------------------------------------------- /Algorithms/Solve_Me_First.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Algorithms/Solve_Me_First.py -------------------------------------------------------------------------------- /Algorithms/Staircase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Algorithms/Staircase.py -------------------------------------------------------------------------------- /Algorithms/TimeConversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Algorithms/TimeConversion.py -------------------------------------------------------------------------------- /Algorithms/Xor-sequence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Algorithms/Xor-sequence.py -------------------------------------------------------------------------------- /Algorithms/apple_and_orange.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Algorithms/apple_and_orange.py -------------------------------------------------------------------------------- /Algorithms/between_two_sets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Algorithms/between_two_sets.py -------------------------------------------------------------------------------- /Algorithms/bill_divison.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Algorithms/bill_divison.py -------------------------------------------------------------------------------- /Algorithms/breaking_the_records.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Algorithms/breaking_the_records.py -------------------------------------------------------------------------------- /Algorithms/day_of_the_programmer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Algorithms/day_of_the_programmer.py -------------------------------------------------------------------------------- /Algorithms/encryption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Algorithms/encryption.cs -------------------------------------------------------------------------------- /Algorithms/findingTopKFrequentlyMentionedKeywords.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Algorithms/findingTopKFrequentlyMentionedKeywords.js -------------------------------------------------------------------------------- /Algorithms/grading_students.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Algorithms/grading_students.py -------------------------------------------------------------------------------- /Algorithms/kadanes_algorithm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Algorithms/kadanes_algorithm.cpp -------------------------------------------------------------------------------- /Algorithms/longestCommonSubsequence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Algorithms/longestCommonSubsequence.py -------------------------------------------------------------------------------- /Algorithms/migratory_birds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Algorithms/migratory_birds.py -------------------------------------------------------------------------------- /Algorithms/number_line_jumps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Algorithms/number_line_jumps.py -------------------------------------------------------------------------------- /Algorithms/sub-array_division.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Algorithms/sub-array_division.py -------------------------------------------------------------------------------- /Artificial Intelligence/README.md: -------------------------------------------------------------------------------- 1 | # Artificial Intelligence -------------------------------------------------------------------------------- /C/C Program to find the largest Element in an Array using Recursion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/C/C Program to find the largest Element in an Array using Recursion.c -------------------------------------------------------------------------------- /C/Print_Pattern.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/C/Print_Pattern.c -------------------------------------------------------------------------------- /C/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/C/README.md -------------------------------------------------------------------------------- /C/SmallTrianglesLargeTriangles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/C/SmallTrianglesLargeTriangles.c -------------------------------------------------------------------------------- /C/VariadicFunctions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/C/VariadicFunctions.c -------------------------------------------------------------------------------- /C/digitfrequency.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/C/digitfrequency.c -------------------------------------------------------------------------------- /C/find the largest Element in an Array using Recursion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/C/find the largest Element in an Array using Recursion.c -------------------------------------------------------------------------------- /C/max_out_of_4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/C/max_out_of_4.c -------------------------------------------------------------------------------- /CPP/Accessing Inherited Function.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/CPP/Accessing Inherited Function.cpp -------------------------------------------------------------------------------- /CPP/Attribute_Parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/CPP/Attribute_Parser.cpp -------------------------------------------------------------------------------- /CPP/Bitwise-AND.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/CPP/Bitwise-AND.cpp -------------------------------------------------------------------------------- /CPP/CircularArrayRotation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/CPP/CircularArrayRotation.cpp -------------------------------------------------------------------------------- /CPP/Class_Template_Specialization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/CPP/Class_Template_Specialization.cpp -------------------------------------------------------------------------------- /CPP/Coin Change Problem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/CPP/Coin Change Problem.cpp -------------------------------------------------------------------------------- /CPP/ColoringBallsProblem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/CPP/ColoringBallsProblem.cpp -------------------------------------------------------------------------------- /CPP/CycleDetection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/CPP/CycleDetection.cpp -------------------------------------------------------------------------------- /CPP/Deque-STL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/CPP/Deque-STL.cpp -------------------------------------------------------------------------------- /CPP/Drawing_Book.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/CPP/Drawing_Book.cpp -------------------------------------------------------------------------------- /CPP/Jesse_and_Cookies.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/CPP/Jesse_and_Cookies.cpp -------------------------------------------------------------------------------- /CPP/Largest_Bitonic_Subarray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/CPP/Largest_Bitonic_Subarray.cpp -------------------------------------------------------------------------------- /CPP/MagicSpells.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/CPP/MagicSpells.cpp -------------------------------------------------------------------------------- /CPP/Matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/CPP/Matrix.cpp -------------------------------------------------------------------------------- /CPP/MessagesOrder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/CPP/MessagesOrder.cpp -------------------------------------------------------------------------------- /CPP/Multi-Level-Inheritance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/CPP/Multi-Level-Inheritance.cpp -------------------------------------------------------------------------------- /CPP/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/CPP/README.md -------------------------------------------------------------------------------- /CPP/RecursiveDigitSum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/CPP/RecursiveDigitSum.cpp -------------------------------------------------------------------------------- /CPP/Restaurant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/CPP/Restaurant.cpp -------------------------------------------------------------------------------- /CPP/Sales_by_match.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/CPP/Sales_by_match.cpp -------------------------------------------------------------------------------- /CPP/The Maximum Subarray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/CPP/The Maximum Subarray.cpp -------------------------------------------------------------------------------- /CPP/TheCoinChangeProblem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/CPP/TheCoinChangeProblem.cpp -------------------------------------------------------------------------------- /CPP/TheMaximumSubarray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/CPP/TheMaximumSubarray.cpp -------------------------------------------------------------------------------- /CPP/ThePowerSum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/CPP/ThePowerSum.cpp -------------------------------------------------------------------------------- /CPP/ice_cream_parlor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/CPP/ice_cream_parlor.cpp -------------------------------------------------------------------------------- /CPP/operatorOverloading.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/CPP/operatorOverloading.cpp -------------------------------------------------------------------------------- /CPP/pointer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/CPP/pointer.cpp -------------------------------------------------------------------------------- /CPP/snakes_ladder_game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/CPP/snakes_ladder_game.cpp -------------------------------------------------------------------------------- /CPP/sortcolors_hackerrank.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/CPP/sortcolors_hackerrank.cpp -------------------------------------------------------------------------------- /Certification Exams/Python Basic1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Certification Exams/Python Basic1.py -------------------------------------------------------------------------------- /Certification Exams/Python Basic2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Certification Exams/Python Basic2.py -------------------------------------------------------------------------------- /Certification Exams/README.md: -------------------------------------------------------------------------------- 1 | # Certification Exams -------------------------------------------------------------------------------- /Data Structures/Arrays/LeftRotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Data Structures/Arrays/LeftRotation.py -------------------------------------------------------------------------------- /Data Structures/Arrays/SparseArray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Data Structures/Arrays/SparseArray.py -------------------------------------------------------------------------------- /Data Structures/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Data Structures/README.md -------------------------------------------------------------------------------- /Data Structures/Stacks/BalancedBrackets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Data Structures/Stacks/BalancedBrackets.py -------------------------------------------------------------------------------- /Databases/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Databases/README.md -------------------------------------------------------------------------------- /Databases/Relational Algebra/01-BasicsOfSetsAndRelations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Databases/Relational Algebra/01-BasicsOfSetsAndRelations.md -------------------------------------------------------------------------------- /Databases/Relational Algebra/02-BasicsOfSetsAndRelations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Databases/Relational Algebra/02-BasicsOfSetsAndRelations.md -------------------------------------------------------------------------------- /Functional Programming/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Functional Programming/README.md -------------------------------------------------------------------------------- /Functional Programming/fibonacci_numbers.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Functional Programming/fibonacci_numbers.hs -------------------------------------------------------------------------------- /Functional Programming/string_mingling.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Functional Programming/string_mingling.hs -------------------------------------------------------------------------------- /Interview-Prep-Challenge/Warm-Up/Counting-Valleys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Interview-Prep-Challenge/Warm-Up/Counting-Valleys.py -------------------------------------------------------------------------------- /Interview-Prep-Challenge/Warm-Up/Sales-By-March.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Interview-Prep-Challenge/Warm-Up/Sales-By-March.py -------------------------------------------------------------------------------- /Java/B-3-Sum.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Java/B-3-Sum.java -------------------------------------------------------------------------------- /Java/JavaIfElse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Java/JavaIfElse.java -------------------------------------------------------------------------------- /Java/Java_Anagrams/Anagram.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Java/Java_Anagrams/Anagram.java -------------------------------------------------------------------------------- /Java/Java_ArrayList/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Java/Java_ArrayList/Solution.java -------------------------------------------------------------------------------- /Java/Java_ArrayList/Solution_try_catch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Java/Java_ArrayList/Solution_try_catch.java -------------------------------------------------------------------------------- /Java/Java_Basic_Loop/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Java/Java_Basic_Loop/Solution.java -------------------------------------------------------------------------------- /Java/Java_Comparator/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Java/Java_Comparator/Solution.java -------------------------------------------------------------------------------- /Java/Java_Currency_Formatter/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Java/Java_Currency_Formatter/Solution.java -------------------------------------------------------------------------------- /Java/Java_DynamicArray/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Java/Java_DynamicArray/Solution.java -------------------------------------------------------------------------------- /Java/Java_ExtraLongFactorials/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Java/Java_ExtraLongFactorials/Solution.java -------------------------------------------------------------------------------- /Java/Java_Left_Rotation/LeftRotationSolution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Java/Java_Left_Rotation/LeftRotationSolution.java -------------------------------------------------------------------------------- /Java/Java_List/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Java/Java_List/Solution.java -------------------------------------------------------------------------------- /Java/Java_Maximum_Draws/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Java/Java_Maximum_Draws/Solution.java -------------------------------------------------------------------------------- /Java/Java_Median_Of_Two_Sorted_Arrays/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Java/Java_Median_Of_Two_Sorted_Arrays/Solution.java -------------------------------------------------------------------------------- /Java/Java_Merge_Sorted_Array/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Java/Java_Merge_Sorted_Array/Solution.java -------------------------------------------------------------------------------- /Java/Java_MiniMaxSum/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Java/Java_MiniMaxSum/Solution.java -------------------------------------------------------------------------------- /Java/Java_PatternSyntaxChecker/PatternSyntaxChecker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Java/Java_PatternSyntaxChecker/PatternSyntaxChecker.java -------------------------------------------------------------------------------- /Java/Java_PrimeChecker/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Java/Java_PrimeChecker/Solution.java -------------------------------------------------------------------------------- /Java/Java_Regex/Java_Regex.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Java/Java_Regex/Java_Regex.java -------------------------------------------------------------------------------- /Java/Java_Sort/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Java/Java_Sort/Solution.java -------------------------------------------------------------------------------- /Java/Java_Stack_Parenthesis/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Java/Java_Stack_Parenthesis/Solution.java -------------------------------------------------------------------------------- /Java/Java_Stdin_and_Stdout(1)/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Java/Java_Stdin_and_Stdout(1)/Solution.java -------------------------------------------------------------------------------- /Java/Java_Stdin_and_Stdout(2)/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Java/Java_Stdin_and_Stdout(2)/Solution.java -------------------------------------------------------------------------------- /Java/Java_Substring/java_substring/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Java/Java_Substring/java_substring/Solution.java -------------------------------------------------------------------------------- /Java/Java_Substring_Compare/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Java/Java_Substring_Compare/Solution.java -------------------------------------------------------------------------------- /Java/Java_Substring_Compare/Solution2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Java/Java_Substring_Compare/Solution2.java -------------------------------------------------------------------------------- /Java/Java_Sum_Two_Integers/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Java/Java_Sum_Two_Integers/Solution.java -------------------------------------------------------------------------------- /Java/Java_Visitor_Pattern/java_visitor_pattern.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Java/Java_Visitor_Pattern/java_visitor_pattern.java -------------------------------------------------------------------------------- /Java/Java_Welcome_to_Java!/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Java/Java_Welcome_to_Java!/Solution.java -------------------------------------------------------------------------------- /Java/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Java/README.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/LICENSE -------------------------------------------------------------------------------- /Linux Shell/A Personalized Echo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Linux Shell/A Personalized Echo.sh -------------------------------------------------------------------------------- /Linux Shell/Arithmetic Operations.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Linux Shell/Arithmetic Operations.sh -------------------------------------------------------------------------------- /Linux Shell/Comparing Numbers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Linux Shell/Comparing Numbers.sh -------------------------------------------------------------------------------- /Linux Shell/Getting started with conditionals.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Linux Shell/Getting started with conditionals.sh -------------------------------------------------------------------------------- /Linux Shell/Let's Echo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Linux Shell/Let's Echo.sh -------------------------------------------------------------------------------- /Linux Shell/Looping and Skipping.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Linux Shell/Looping and Skipping.sh -------------------------------------------------------------------------------- /Linux Shell/Looping with Numbers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Linux Shell/Looping with Numbers.sh -------------------------------------------------------------------------------- /Linux Shell/Middle of a Text File.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Linux Shell/Middle of a Text File.sh -------------------------------------------------------------------------------- /Linux Shell/More on Conditionals.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Linux Shell/More on Conditionals.sh -------------------------------------------------------------------------------- /Linux Shell/README.md: -------------------------------------------------------------------------------- 1 | # Linux Shell 2 | 3 | -------------------------------------------------------------------------------- /Linux Shell/The World of Numbers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Linux Shell/The World of Numbers.sh -------------------------------------------------------------------------------- /Mathematics/Army Game.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Mathematics/Army Game.java -------------------------------------------------------------------------------- /Mathematics/Find the Point.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Mathematics/Find the Point.java -------------------------------------------------------------------------------- /Mathematics/HandShake.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Mathematics/HandShake.java -------------------------------------------------------------------------------- /Mathematics/Maximum Draws.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Mathematics/Maximum Draws.cpp -------------------------------------------------------------------------------- /Mathematics/Minimum Height Triangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Mathematics/Minimum Height Triangle.cpp -------------------------------------------------------------------------------- /Mathematics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Mathematics/README.md -------------------------------------------------------------------------------- /Mathematics/Special Multiple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Mathematics/Special Multiple.cpp -------------------------------------------------------------------------------- /Mathematics/Summing the N series.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Mathematics/Summing the N series.cpp -------------------------------------------------------------------------------- /Mathematics/maximumDraws.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Mathematics/maximumDraws.java -------------------------------------------------------------------------------- /Problem Solving/C/AppleAndOranges.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Problem Solving/C/AppleAndOranges.c -------------------------------------------------------------------------------- /Problem Solving/C/Repeated_strings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Problem Solving/C/Repeated_strings.c -------------------------------------------------------------------------------- /Problem Solving/C/forming_a_magic_square.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Problem Solving/C/forming_a_magic_square.c -------------------------------------------------------------------------------- /Problem Solving/CPP/Balanced Brackets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Problem Solving/CPP/Balanced Brackets.cpp -------------------------------------------------------------------------------- /Problem Solving/CPP/CatsMouse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Problem Solving/CPP/CatsMouse.cpp -------------------------------------------------------------------------------- /Problem Solving/CPP/Fair_Rations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Problem Solving/CPP/Fair_Rations.cpp -------------------------------------------------------------------------------- /Problem Solving/CPP/Magic_Square.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Problem Solving/CPP/Magic_Square.cpp -------------------------------------------------------------------------------- /Problem Solving/CPP/Organizing_Containers_of_Balls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Problem Solving/CPP/Organizing_Containers_of_Balls.cpp -------------------------------------------------------------------------------- /Problem Solving/CPP/Pairs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Problem Solving/CPP/Pairs.cpp -------------------------------------------------------------------------------- /Problem Solving/CPP/commonChild.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Problem Solving/CPP/commonChild.cpp -------------------------------------------------------------------------------- /Problem Solving/CPP/flatland_spaces_tations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Problem Solving/CPP/flatland_spaces_tations.cpp -------------------------------------------------------------------------------- /Problem Solving/CPP/larry'sArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Problem Solving/CPP/larry'sArray.cpp -------------------------------------------------------------------------------- /Problem Solving/Java/Angry-professor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Problem Solving/Java/Angry-professor.java -------------------------------------------------------------------------------- /Problem Solving/Java/Picking-Numbers.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Problem Solving/Java/Picking-Numbers.java -------------------------------------------------------------------------------- /Problem Solving/Java/luck-balance.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Problem Solving/Java/luck-balance.java -------------------------------------------------------------------------------- /Problem Solving/Julia/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Problem Solving/Julia/README.md -------------------------------------------------------------------------------- /Problem Solving/Julia/staircase.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Problem Solving/Julia/staircase.jl -------------------------------------------------------------------------------- /Problem Solving/Python/AVeryBigSum.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Problem Solving/Python/AlmostSorted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Problem Solving/Python/AlmostSorted.py -------------------------------------------------------------------------------- /Problem Solving/Python/BeautifulBinaryString.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Problem Solving/Python/BeautifulBinaryString.py -------------------------------------------------------------------------------- /Problem Solving/Python/BeautifulDayAtTheMovies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Problem Solving/Python/BeautifulDayAtTheMovies.py -------------------------------------------------------------------------------- /Problem Solving/Python/BeautifulTriplets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Problem Solving/Python/BeautifulTriplets.py -------------------------------------------------------------------------------- /Problem Solving/Python/BirthdayCakeCandles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Problem Solving/Python/BirthdayCakeCandles.py -------------------------------------------------------------------------------- /Problem Solving/Python/BirthdayChocolate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Problem Solving/Python/BirthdayChocolate.py -------------------------------------------------------------------------------- /Problem Solving/Python/BreakingtheRecords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Problem Solving/Python/BreakingtheRecords.py -------------------------------------------------------------------------------- /Problem Solving/Python/DayoftheProgrammer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Problem Solving/Python/DayoftheProgrammer.py -------------------------------------------------------------------------------- /Problem Solving/Python/DesignerPDFViewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Problem Solving/Python/DesignerPDFViewer.py -------------------------------------------------------------------------------- /Problem Solving/Python/DivisibleSumPairs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Problem Solving/Python/DivisibleSumPairs.py -------------------------------------------------------------------------------- /Problem Solving/Python/FindDigits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Problem Solving/Python/FindDigits.py -------------------------------------------------------------------------------- /Problem Solving/Python/FraudulentActivityNotification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Problem Solving/Python/FraudulentActivityNotification.py -------------------------------------------------------------------------------- /Problem Solving/Python/FunnyString.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Problem Solving/Python/FunnyString.py -------------------------------------------------------------------------------- /Problem Solving/Python/GradingProblem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Problem Solving/Python/GradingProblem.py -------------------------------------------------------------------------------- /Problem Solving/Python/JourneyToTheMoon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Problem Solving/Python/JourneyToTheMoon.py -------------------------------------------------------------------------------- /Problem Solving/Python/Lily'sHomework.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Problem Solving/Python/Lily'sHomework.py -------------------------------------------------------------------------------- /Problem Solving/Python/MarcsCakewalk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Problem Solving/Python/MarcsCakewalk.py -------------------------------------------------------------------------------- /Problem Solving/Python/MigratoryBirds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Problem Solving/Python/MigratoryBirds.py -------------------------------------------------------------------------------- /Problem Solving/Python/MinimumDistances.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Problem Solving/Python/MinimumDistances.py -------------------------------------------------------------------------------- /Problem Solving/Python/OrangeandApple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Problem Solving/Python/OrangeandApple.py -------------------------------------------------------------------------------- /Problem Solving/Python/TheCoinChangeProblem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Problem Solving/Python/TheCoinChangeProblem.py -------------------------------------------------------------------------------- /Problem Solving/Python/TimeConversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Problem Solving/Python/TimeConversion.py -------------------------------------------------------------------------------- /Problem Solving/Python/bon-appetit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Problem Solving/Python/bon-appetit.py -------------------------------------------------------------------------------- /Problem Solving/Python/counting-valley.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Problem Solving/Python/counting-valley.py -------------------------------------------------------------------------------- /Problem Solving/Python/staircase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Problem Solving/Python/staircase.py -------------------------------------------------------------------------------- /Problem Solving/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Problem Solving/README.md -------------------------------------------------------------------------------- /Problem Solving/Swift/CaesarCipher.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Problem Solving/Swift/CaesarCipher.playground/Contents.swift -------------------------------------------------------------------------------- /Problem Solving/Swift/CaesarCipher.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Problem Solving/Swift/CaesarCipher.playground/contents.xcplayground -------------------------------------------------------------------------------- /Problem Solving/Swift/CaesarCipher.playground/playground.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Problem Solving/Swift/CaesarCipher.playground/playground.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Problem Solving/Swift/CaesarCipher.playground/playground.xcworkspace/xcuserdata/camiloibarrayepes.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Problem Solving/Swift/CaesarCipher.playground/playground.xcworkspace/xcuserdata/camiloibarrayepes.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Problem Solving/Swift/appleAndOranges.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Problem Solving/Swift/appleAndOranges.playground/Contents.swift -------------------------------------------------------------------------------- /Problem Solving/Swift/appleAndOranges.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Problem Solving/Swift/appleAndOranges.playground/contents.xcplayground -------------------------------------------------------------------------------- /Problem Solving/Swift/appleAndOranges.playground/playground.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Problem Solving/Swift/appleAndOranges.playground/playground.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Problem Solving/Swift/appleAndOranges.playground/playground.xcworkspace/xcuserdata/camiloibarrayepes.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Problem Solving/Swift/appleAndOranges.playground/playground.xcworkspace/xcuserdata/camiloibarrayepes.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Python/1-Overlapping Subproblems Property in Dynamic Programming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/1-Overlapping Subproblems Property in Dynamic Programming.py -------------------------------------------------------------------------------- /Python/2-Optimal Substructure Property in Dynamic Programming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/2-Optimal Substructure Property in Dynamic Programming.py -------------------------------------------------------------------------------- /Python/3-Longest Increasing Subsequence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/3-Longest Increasing Subsequence.py -------------------------------------------------------------------------------- /Python/4-Longest Common Subsequence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/4-Longest Common Subsequence.py -------------------------------------------------------------------------------- /Python/5-EditDistance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/5-EditDistance.py -------------------------------------------------------------------------------- /Python/6-Minimum Distance Between two points.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/6-Minimum Distance Between two points.py -------------------------------------------------------------------------------- /Python/7-Coin Change.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/7-Coin Change.py -------------------------------------------------------------------------------- /Python/8-Bionimal Coefficients.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/8-Bionimal Coefficients.py -------------------------------------------------------------------------------- /Python/9-0-1 Knapsack Problem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/9-0-1 Knapsack Problem.py -------------------------------------------------------------------------------- /Python/AlphabetRangoli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/AlphabetRangoli.py -------------------------------------------------------------------------------- /Python/ArithmeticOperators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/ArithmeticOperators.py -------------------------------------------------------------------------------- /Python/Athlete Sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/Athlete Sort.py -------------------------------------------------------------------------------- /Python/BeautifulDaysAtTheMovies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/BeautifulDaysAtTheMovies.py -------------------------------------------------------------------------------- /Python/BirthdayCakeCandles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/BirthdayCakeCandles.py -------------------------------------------------------------------------------- /Python/BubbleSort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/BubbleSort.py -------------------------------------------------------------------------------- /Python/CalendarModule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/CalendarModule.py -------------------------------------------------------------------------------- /Python/Capitalize!.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/Capitalize!.py -------------------------------------------------------------------------------- /Python/Climbing_the_Leaderboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/Climbing_the_Leaderboard.py -------------------------------------------------------------------------------- /Python/CollectionsCounter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/CollectionsCounter.py -------------------------------------------------------------------------------- /Python/CollectionsNamedtuple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/CollectionsNamedtuple.py -------------------------------------------------------------------------------- /Python/CollectionsOrderedDict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/CollectionsOrderedDict.py -------------------------------------------------------------------------------- /Python/Compare the Triplets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/Compare the Triplets.py -------------------------------------------------------------------------------- /Python/Compress the String.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/Compress the String.py -------------------------------------------------------------------------------- /Python/Count of n digit numbers whose sum of digits equals to given sum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/Count of n digit numbers whose sum of digits equals to given sum.py -------------------------------------------------------------------------------- /Python/Count ways to reach the n’th stair.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/Count ways to reach the n’th stair.py -------------------------------------------------------------------------------- /Python/Day-of-the-Programmer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/Day-of-the-Programmer.py -------------------------------------------------------------------------------- /Python/DefaultDict_Tutorial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/DefaultDict_Tutorial.py -------------------------------------------------------------------------------- /Python/DesignerDoorMat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/DesignerDoorMat.py -------------------------------------------------------------------------------- /Python/Else-If.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/Else-If.py -------------------------------------------------------------------------------- /Python/Exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/Exceptions.py -------------------------------------------------------------------------------- /Python/ExtraLongFactorials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/ExtraLongFactorials.py -------------------------------------------------------------------------------- /Python/EyeAndIdentity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/EyeAndIdentity.py -------------------------------------------------------------------------------- /Python/Find a string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/Find a string.py -------------------------------------------------------------------------------- /Python/FindDigits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/FindDigits.py -------------------------------------------------------------------------------- /Python/FindSecondRunnerUp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/FindSecondRunnerUp.py -------------------------------------------------------------------------------- /Python/FindingThePercentage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/FindingThePercentage.py -------------------------------------------------------------------------------- /Python/FunnyString.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/FunnyString.py -------------------------------------------------------------------------------- /Python/HeapsAlgorithm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/HeapsAlgorithm.py -------------------------------------------------------------------------------- /Python/HelloWorld.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/HelloWorld.py -------------------------------------------------------------------------------- /Python/Incorrect_Regex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/Incorrect_Regex.py -------------------------------------------------------------------------------- /Python/Introduction to Sets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/Introduction to Sets.py -------------------------------------------------------------------------------- /Python/IntroductionToSets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/IntroductionToSets.py -------------------------------------------------------------------------------- /Python/Iterables and Iterators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/Iterables and Iterators.py -------------------------------------------------------------------------------- /Python/ItertoolsCombinations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/ItertoolsCombinations.py -------------------------------------------------------------------------------- /Python/ItertoolsCombinations_with_replacement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/ItertoolsCombinations_with_replacement.py -------------------------------------------------------------------------------- /Python/ItertoolsPermutations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/ItertoolsPermutations.py -------------------------------------------------------------------------------- /Python/ItertoolsProduct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/ItertoolsProduct.py -------------------------------------------------------------------------------- /Python/Jumping-on-the-clouds-revisited.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/Jumping-on-the-clouds-revisited.py -------------------------------------------------------------------------------- /Python/LeapYear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/LeapYear.py -------------------------------------------------------------------------------- /Python/LeftRotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/LeftRotation.py -------------------------------------------------------------------------------- /Python/ListComprehensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/ListComprehensions.py -------------------------------------------------------------------------------- /Python/Loops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/Loops.py -------------------------------------------------------------------------------- /Python/Matrix_Script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/Matrix_Script.py -------------------------------------------------------------------------------- /Python/Maximize It!.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/Maximize It!.py -------------------------------------------------------------------------------- /Python/MergeTheTools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/MergeTheTools.py -------------------------------------------------------------------------------- /Python/MergeTwoSortedArray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/MergeTwoSortedArray.py -------------------------------------------------------------------------------- /Python/ModDivmod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/ModDivmod.py -------------------------------------------------------------------------------- /Python/Mutations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/Mutations.py -------------------------------------------------------------------------------- /Python/NestedLists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/NestedLists.py -------------------------------------------------------------------------------- /Python/No Idea! - Find your Happiness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/No Idea! - Find your Happiness.py -------------------------------------------------------------------------------- /Python/NumberToEnglish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/NumberToEnglish.py -------------------------------------------------------------------------------- /Python/Partition problem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/Partition problem.py -------------------------------------------------------------------------------- /Python/Piling_up.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/Piling_up.py -------------------------------------------------------------------------------- /Python/Polar Coordinates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/Polar Coordinates.py -------------------------------------------------------------------------------- /Python/Power - Mod Power.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/Power - Mod Power.py -------------------------------------------------------------------------------- /Python/QueueUsingTwoStacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/QueueUsingTwoStacks.py -------------------------------------------------------------------------------- /Python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/README.md -------------------------------------------------------------------------------- /Python/Sales by Match.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/Sales by Match.py -------------------------------------------------------------------------------- /Python/Santa Clause.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/Santa Clause.py -------------------------------------------------------------------------------- /Python/Set .discard(), .remove() & .pop().py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/Set .discard(), .remove() & .pop().py -------------------------------------------------------------------------------- /Python/Set.add().py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/Set.add().py -------------------------------------------------------------------------------- /Python/SongOfPi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/SongOfPi.py -------------------------------------------------------------------------------- /Python/Staircase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/Staircase.py -------------------------------------------------------------------------------- /Python/String Validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/String Validators.py -------------------------------------------------------------------------------- /Python/String_Split_and_Join.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/String_Split_and_Join.py -------------------------------------------------------------------------------- /Python/StringsplitandJoin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/StringsplitandJoin.py -------------------------------------------------------------------------------- /Python/SymmetricDifference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/SymmetricDifference.py -------------------------------------------------------------------------------- /Python/Text Alignment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/Text Alignment.py -------------------------------------------------------------------------------- /Python/Text Wrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/Text Wrap.py -------------------------------------------------------------------------------- /Python/TheMinionGame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/TheMinionGame.py -------------------------------------------------------------------------------- /Python/TheTimeInWords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/TheTimeInWords.py -------------------------------------------------------------------------------- /Python/Tiling Problem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/Tiling Problem.py -------------------------------------------------------------------------------- /Python/Time Delta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/Time Delta.py -------------------------------------------------------------------------------- /Python/TimeDelta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/TimeDelta.py -------------------------------------------------------------------------------- /Python/Total number of non-decreasing numbers with n digits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/Total number of non-decreasing numbers with n digits.py -------------------------------------------------------------------------------- /Python/TriangleQuest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/TriangleQuest.py -------------------------------------------------------------------------------- /Python/TriangleQuest2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/TriangleQuest2.py -------------------------------------------------------------------------------- /Python/Tuples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/Tuples.py -------------------------------------------------------------------------------- /Python/Validating Email Addresses With a Filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/Validating Email Addresses With a Filter.py -------------------------------------------------------------------------------- /Python/What's Your Name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/What's Your Name.py -------------------------------------------------------------------------------- /Python/Word Order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/Word Order.py -------------------------------------------------------------------------------- /Python/Write_a_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/Write_a_function.py -------------------------------------------------------------------------------- /Python/ZigZagSequence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/ZigZagSequence.py -------------------------------------------------------------------------------- /Python/abbreviation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/abbreviation.py -------------------------------------------------------------------------------- /Python/alphabet_rangoli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/alphabet_rangoli.py -------------------------------------------------------------------------------- /Python/apple-and-orange.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/apple-and-orange.py -------------------------------------------------------------------------------- /Python/balancingBrackets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/balancingBrackets.py -------------------------------------------------------------------------------- /Python/bigger-is-greater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/bigger-is-greater.py -------------------------------------------------------------------------------- /Python/binarySearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/binarySearch.py -------------------------------------------------------------------------------- /Python/botclean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/botclean.py -------------------------------------------------------------------------------- /Python/company-logo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/company-logo.py -------------------------------------------------------------------------------- /Python/fast_fibonacci.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/fast_fibonacci.py -------------------------------------------------------------------------------- /Python/o_First_non-repeating_integer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/o_First_non-repeating_integer.py -------------------------------------------------------------------------------- /Python/o_sw_Add Upto a Value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/o_sw_Add Upto a Value.py -------------------------------------------------------------------------------- /Python/piling-up.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/piling-up.py -------------------------------------------------------------------------------- /Python/practice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/practice.py -------------------------------------------------------------------------------- /Python/princes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/princes.py -------------------------------------------------------------------------------- /Python/sWAPcASE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/sWAPcASE.py -------------------------------------------------------------------------------- /Python/tictactoe/ticpactoe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/tictactoe/ticpactoe.py -------------------------------------------------------------------------------- /Python/tron/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/tron/README.md -------------------------------------------------------------------------------- /Python/tron/simplewin.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/tron/simplewin.gif -------------------------------------------------------------------------------- /Python/tron/tie.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/tron/tie.gif -------------------------------------------------------------------------------- /Python/tron/tron.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/tron/tron.py -------------------------------------------------------------------------------- /Python/tron/win.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Python/tron/win.gif -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/README.md -------------------------------------------------------------------------------- /Regex/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Regex/README.md -------------------------------------------------------------------------------- /Ruby/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Ruby/README.md -------------------------------------------------------------------------------- /Ruby/apple_and_orange.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Ruby/apple_and_orange.rb -------------------------------------------------------------------------------- /Ruby/ruby-case.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Ruby/ruby-case.rb -------------------------------------------------------------------------------- /Ruby/ruby-lambdas.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Ruby/ruby-lambdas.rb -------------------------------------------------------------------------------- /Ruby/ruby-until.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/Ruby/ruby-until.rb -------------------------------------------------------------------------------- /SQL/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/SQL/README.md -------------------------------------------------------------------------------- /SQL/asianPopulation.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/SQL/asianPopulation.sql -------------------------------------------------------------------------------- /SQL/average-population.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/SQL/average-population.sql -------------------------------------------------------------------------------- /SQL/contest-leaderboard.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/SQL/contest-leaderboard.sql -------------------------------------------------------------------------------- /SQL/japaneseCityAttributes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/SQL/japaneseCityAttributes.sql -------------------------------------------------------------------------------- /SQL/japaneseCityNames.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/SQL/japaneseCityNames.sql -------------------------------------------------------------------------------- /SQL/ollivander's-inventory.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/SQL/ollivander's-inventory.sql -------------------------------------------------------------------------------- /SQL/placements.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/SQL/placements.sql -------------------------------------------------------------------------------- /SQL/print-prime-numbers.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/SQL/print-prime-numbers.sql -------------------------------------------------------------------------------- /SQL/revisiting-select-query-2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/SQL/revisiting-select-query-2.sql -------------------------------------------------------------------------------- /SQL/selectAll.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/SQL/selectAll.sql -------------------------------------------------------------------------------- /SQL/selectById.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/SQL/selectById.sql -------------------------------------------------------------------------------- /SQL/symmetric-pairs.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/SQL/symmetric-pairs.sql -------------------------------------------------------------------------------- /SQL/usaPopulation.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/SQL/usaPopulation.sql -------------------------------------------------------------------------------- /SQL/weather-observation-station-1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/SQL/weather-observation-station-1.sql -------------------------------------------------------------------------------- /SQL/weather-observation-station-18.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/SQL/weather-observation-station-18.sql -------------------------------------------------------------------------------- /SQL/weather-observation-station-19.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/SQL/weather-observation-station-19.sql -------------------------------------------------------------------------------- /SQL/weather-observation-station-20.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/SQL/weather-observation-station-20.sql -------------------------------------------------------------------------------- /SQL/weather-observation-station-3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/SQL/weather-observation-station-3.sql -------------------------------------------------------------------------------- /SQL/weather-observation-station-4.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/SQL/weather-observation-station-4.sql -------------------------------------------------------------------------------- /SQL/weather-observation-station-5.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/SQL/weather-observation-station-5.sql -------------------------------------------------------------------------------- /SQL/weather-observation-station-7.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/SQL/weather-observation-station-7.sql -------------------------------------------------------------------------------- /SQL/weather-observation-station-8.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapnanildutta/Hackerrank-Codes/HEAD/SQL/weather-observation-station-8.sql --------------------------------------------------------------------------------