├── Accenture ├── Array Part 1, 2 │ ├── Intersection of Two Arrays │ │ ├── cpp.cpp │ │ ├── java.java │ │ └── python.py │ ├── Kth Largest Element in an Array │ │ ├── Main.java │ │ ├── cpp.cpp │ │ └── python.py │ ├── Maximum Element in an Array │ │ ├── cpp.cpp │ │ ├── java.java │ │ └── python.py │ ├── Maximum and Its Index in an Array │ │ ├── cpp.cpp │ │ ├── java.java │ │ └── python.py │ ├── Merge Two Sorted Arrays │ │ ├── cpp.cpp │ │ ├── java.java │ │ └── python.py │ ├── Missing Number in an Array │ │ ├── cpp.cpp │ │ ├── java.java │ │ └── python.py │ ├── Occurrence of Each Element in an Array │ │ ├── cpp.cpp │ │ ├── java.java │ │ └── python.py │ ├── Remove Duplicates from an Array │ │ ├── cpp.cpp │ │ ├── java.java │ │ └── python.py │ ├── Reverse a String │ │ ├── cpp.cpp │ │ ├── java.java │ │ └── python.py │ ├── Second Largest Element in an Array │ │ ├── cpp.cpp │ │ ├── java.java │ │ └── python.py │ ├── SmallLargeSum │ │ ├── Main.java │ │ ├── cpp.cpp │ │ ├── python.py │ │ └── question.txt │ ├── finds the largest number that can be formed by permutation │ │ ├── Main.java │ │ ├── cpp.cpp │ │ └── python.py │ └── sum of the divisors for the N integer number │ │ ├── Main.java │ │ ├── cpp.cpp │ │ └── python.py ├── Array Part 3 │ ├── Contains an Element │ │ ├── ContainsElement.java │ │ ├── Q.txt │ │ ├── cpp.cpp │ │ └── python.py │ ├── Count Occurrences │ │ ├── CountOccurrences.java │ │ ├── Python.py │ │ ├── Q.txt │ │ └── cpp.cpp │ ├── array of integers and an integer sum │ │ ├── FindPairWithSum.java │ │ ├── cpp.cpp │ │ └── python.py │ ├── average of all positive numbers │ │ ├── AverageOfPositiveNumbers.java │ │ ├── Q.txt │ │ ├── cpp.cpp │ │ └── python.py │ ├── index of an equilibrium point │ │ ├── EquilibriumPoint.java │ │ ├── Q.txt │ │ ├── cpp.cpp │ │ └── python.py │ ├── maximum subarray sum │ │ ├── MaxSubarraySum.java │ │ ├── Python.py │ │ ├── Q.txt │ │ └── cpp.cpp │ ├── minimum value and its index │ │ ├── FindMinAndIndex.java │ │ ├── Python.py │ │ ├── Q.txt │ │ └── cpp.cpp │ └── rotate the array │ │ ├── Q.txt │ │ ├── RotateArray.java │ │ ├── cpp.cpp │ │ └── python.py ├── August coding ques │ ├── 22 aug │ │ ├── 1.DecodeString │ │ │ ├── Main.java │ │ │ ├── cpp.cpp │ │ │ └── python.py │ │ └── 2.googly │ │ │ ├── Main.java │ │ │ ├── cpp.cpp │ │ │ └── python.py │ ├── 7.sum of all the prime numbers between 1 and N │ │ ├── cpp.cpp │ │ ├── java.java │ │ └── python.py │ ├── Spiral Matrix │ │ ├── cpp.cpp │ │ ├── java.java │ │ └── python.py │ ├── check prime │ │ ├── Main.java │ │ ├── cpp.cpp │ │ └── python.py │ └── factorial │ │ ├── Main.java │ │ ├── cpp.cpp │ │ └── python.py ├── LinkedList │ ├── Clone a LL with random pointers │ │ ├── CloneLinkedList.java │ │ ├── Q.txt │ │ ├── cpp.cpp │ │ └── python.py │ ├── Reverse LL Recursion │ │ ├── cpp.cpp │ │ ├── java.java │ │ └── python.py │ └── Reverse a LL │ │ ├── cpp.cpp │ │ ├── java.java │ │ └── python.py ├── Stacks and queues │ ├── Array implementation of queue │ │ ├── StaticQueueinjava.java │ │ ├── cpp.cpp │ │ └── python.py │ └── Implement a Stack Using an Array │ │ ├── cpp.cpp │ │ ├── java.java │ │ └── python.py └── Strings │ ├── 1. Palindrome Check │ ├── PalindromeCheck.java │ ├── Q.txt │ ├── cpp.cpp │ └── python.py │ ├── 2. Binary Operation │ ├── BinaryOperations.java │ ├── cpp.cpp │ └── python.py │ ├── 3. Replace Character │ ├── Q.txt │ ├── ReplaceCharacter.java │ ├── cpp.cpp │ └── python.py │ ├── 4. Anagram Problem │ ├── AnagramChecker.java │ ├── Q.txt │ ├── cpp.cpp │ └── python.py │ ├── 5. Reverse Words │ ├── Q.txt │ ├── ReverseWords.java │ ├── cpp.cpp │ └── python.py │ └── 6. String transformation │ ├── Q.txt │ ├── StringTransformation.java │ ├── cpp.cpp │ └── python.py └── Infosys ├── Part 1 ├── 1.swap two arrays │ ├── SwapArrays.java │ ├── cpp.cpp │ └── python.py ├── 10.smallest and largest number in an array │ ├── cpp.cpp │ ├── java.java │ └── python.py ├── 2.Sort String of Characters │ ├── cpp.cpp │ ├── java.java │ └── python.py ├── 3. count the number of unique characters │ ├── cpp.cpp │ ├── java.java │ └── python.py ├── 4.multiply two matrices │ ├── cpp.cpp │ ├── java.java │ └── python.py ├── 5.find the area of the incircle of a right-angled triangle │ ├── cpp.cpp │ ├── java.java │ └── python.py ├── 6.temperature from Fahrenheit to Celsius │ ├── TemperatureConversion.java │ ├── cpp.cpp │ └── python.py ├── 7.sum of all the prime numbers between 1 and N │ ├── cpp.cpp │ ├── java.java │ └── python.py ├── 8.make the largest number from the digits of the array │ ├── Solution.java │ ├── cpp.cpp │ └── python.py └── 9.converts decimal numbers to binary numbers │ ├── cpp.cpp │ ├── java.java │ └── python.py └── Part 2 ├── 1.find the next permutation of the given string ├── Solution.java ├── cpp.cpp └── python.py ├── 10.subtraction of two matrices ├── SwapArrays.java ├── cpp.cpp └── python.py ├── 2.find the missing characters that are needed to make the string a pangram ├── Main.java ├── cpp.cpp └── python.py ├── 3. form a triangle such that the last row of the triangle contains all the elements of the array and the row above it will contain the sum of two elements below it ├── Solution.java ├── cpp.cpp └── python.py ├── 4.find the maximum profit you can earn by selling them ├── SwapArrays.java ├── cpp.cpp └── python.py ├── 5.given a matrix that contains only 0 and 1, find the maximum size of a rectangle that contains only 1 ├── Solution.java ├── cpp.cpp └── python.py ├── 6.Given the coordinates of the endpoints of two rectangles, find whether they overlap each other or not ├── Solution.java ├── cpp.cpp └── python.py ├── 7.find whether we can convert one string to another by rotating it in two places ├── Solution.java ├── cpp.cpp └── python.py ├── 8.Given a string that only contains lowercase characters, find the first unique character ├── Solution.java ├── cpp.cpp └── python.py └── 9.How do you rotate a matrix by 90 degrees ├── SwapArrays.java ├── cpp.cpp └── python.py /Accenture/Array Part 1, 2/Intersection of Two Arrays/cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Array Part 1, 2/Intersection of Two Arrays/cpp.cpp -------------------------------------------------------------------------------- /Accenture/Array Part 1, 2/Intersection of Two Arrays/java.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Array Part 1, 2/Intersection of Two Arrays/java.java -------------------------------------------------------------------------------- /Accenture/Array Part 1, 2/Intersection of Two Arrays/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Array Part 1, 2/Intersection of Two Arrays/python.py -------------------------------------------------------------------------------- /Accenture/Array Part 1, 2/Kth Largest Element in an Array/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Array Part 1, 2/Kth Largest Element in an Array/Main.java -------------------------------------------------------------------------------- /Accenture/Array Part 1, 2/Kth Largest Element in an Array/cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Array Part 1, 2/Kth Largest Element in an Array/cpp.cpp -------------------------------------------------------------------------------- /Accenture/Array Part 1, 2/Kth Largest Element in an Array/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Array Part 1, 2/Kth Largest Element in an Array/python.py -------------------------------------------------------------------------------- /Accenture/Array Part 1, 2/Maximum Element in an Array/cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Array Part 1, 2/Maximum Element in an Array/cpp.cpp -------------------------------------------------------------------------------- /Accenture/Array Part 1, 2/Maximum Element in an Array/java.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Array Part 1, 2/Maximum Element in an Array/java.java -------------------------------------------------------------------------------- /Accenture/Array Part 1, 2/Maximum Element in an Array/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Array Part 1, 2/Maximum Element in an Array/python.py -------------------------------------------------------------------------------- /Accenture/Array Part 1, 2/Maximum and Its Index in an Array/cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Array Part 1, 2/Maximum and Its Index in an Array/cpp.cpp -------------------------------------------------------------------------------- /Accenture/Array Part 1, 2/Maximum and Its Index in an Array/java.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Array Part 1, 2/Maximum and Its Index in an Array/java.java -------------------------------------------------------------------------------- /Accenture/Array Part 1, 2/Maximum and Its Index in an Array/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Array Part 1, 2/Maximum and Its Index in an Array/python.py -------------------------------------------------------------------------------- /Accenture/Array Part 1, 2/Merge Two Sorted Arrays/cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Array Part 1, 2/Merge Two Sorted Arrays/cpp.cpp -------------------------------------------------------------------------------- /Accenture/Array Part 1, 2/Merge Two Sorted Arrays/java.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Array Part 1, 2/Merge Two Sorted Arrays/java.java -------------------------------------------------------------------------------- /Accenture/Array Part 1, 2/Merge Two Sorted Arrays/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Array Part 1, 2/Merge Two Sorted Arrays/python.py -------------------------------------------------------------------------------- /Accenture/Array Part 1, 2/Missing Number in an Array/cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Array Part 1, 2/Missing Number in an Array/cpp.cpp -------------------------------------------------------------------------------- /Accenture/Array Part 1, 2/Missing Number in an Array/java.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Array Part 1, 2/Missing Number in an Array/java.java -------------------------------------------------------------------------------- /Accenture/Array Part 1, 2/Missing Number in an Array/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Array Part 1, 2/Missing Number in an Array/python.py -------------------------------------------------------------------------------- /Accenture/Array Part 1, 2/Occurrence of Each Element in an Array/cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Array Part 1, 2/Occurrence of Each Element in an Array/cpp.cpp -------------------------------------------------------------------------------- /Accenture/Array Part 1, 2/Occurrence of Each Element in an Array/java.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Array Part 1, 2/Occurrence of Each Element in an Array/java.java -------------------------------------------------------------------------------- /Accenture/Array Part 1, 2/Occurrence of Each Element in an Array/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Array Part 1, 2/Occurrence of Each Element in an Array/python.py -------------------------------------------------------------------------------- /Accenture/Array Part 1, 2/Remove Duplicates from an Array/cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Array Part 1, 2/Remove Duplicates from an Array/cpp.cpp -------------------------------------------------------------------------------- /Accenture/Array Part 1, 2/Remove Duplicates from an Array/java.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Array Part 1, 2/Remove Duplicates from an Array/java.java -------------------------------------------------------------------------------- /Accenture/Array Part 1, 2/Remove Duplicates from an Array/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Array Part 1, 2/Remove Duplicates from an Array/python.py -------------------------------------------------------------------------------- /Accenture/Array Part 1, 2/Reverse a String/cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Array Part 1, 2/Reverse a String/cpp.cpp -------------------------------------------------------------------------------- /Accenture/Array Part 1, 2/Reverse a String/java.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Array Part 1, 2/Reverse a String/java.java -------------------------------------------------------------------------------- /Accenture/Array Part 1, 2/Reverse a String/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Array Part 1, 2/Reverse a String/python.py -------------------------------------------------------------------------------- /Accenture/Array Part 1, 2/Second Largest Element in an Array/cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Array Part 1, 2/Second Largest Element in an Array/cpp.cpp -------------------------------------------------------------------------------- /Accenture/Array Part 1, 2/Second Largest Element in an Array/java.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Array Part 1, 2/Second Largest Element in an Array/java.java -------------------------------------------------------------------------------- /Accenture/Array Part 1, 2/Second Largest Element in an Array/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Array Part 1, 2/Second Largest Element in an Array/python.py -------------------------------------------------------------------------------- /Accenture/Array Part 1, 2/SmallLargeSum/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Array Part 1, 2/SmallLargeSum/Main.java -------------------------------------------------------------------------------- /Accenture/Array Part 1, 2/SmallLargeSum/cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Array Part 1, 2/SmallLargeSum/cpp.cpp -------------------------------------------------------------------------------- /Accenture/Array Part 1, 2/SmallLargeSum/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Array Part 1, 2/SmallLargeSum/python.py -------------------------------------------------------------------------------- /Accenture/Array Part 1, 2/SmallLargeSum/question.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Array Part 1, 2/SmallLargeSum/question.txt -------------------------------------------------------------------------------- /Accenture/Array Part 1, 2/finds the largest number that can be formed by permutation/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Array Part 1, 2/finds the largest number that can be formed by permutation/Main.java -------------------------------------------------------------------------------- /Accenture/Array Part 1, 2/finds the largest number that can be formed by permutation/cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Array Part 1, 2/finds the largest number that can be formed by permutation/cpp.cpp -------------------------------------------------------------------------------- /Accenture/Array Part 1, 2/finds the largest number that can be formed by permutation/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Array Part 1, 2/finds the largest number that can be formed by permutation/python.py -------------------------------------------------------------------------------- /Accenture/Array Part 1, 2/sum of the divisors for the N integer number/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Array Part 1, 2/sum of the divisors for the N integer number/Main.java -------------------------------------------------------------------------------- /Accenture/Array Part 1, 2/sum of the divisors for the N integer number/cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Array Part 1, 2/sum of the divisors for the N integer number/cpp.cpp -------------------------------------------------------------------------------- /Accenture/Array Part 1, 2/sum of the divisors for the N integer number/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Array Part 1, 2/sum of the divisors for the N integer number/python.py -------------------------------------------------------------------------------- /Accenture/Array Part 3/Contains an Element/ContainsElement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Array Part 3/Contains an Element/ContainsElement.java -------------------------------------------------------------------------------- /Accenture/Array Part 3/Contains an Element/Q.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Array Part 3/Contains an Element/Q.txt -------------------------------------------------------------------------------- /Accenture/Array Part 3/Contains an Element/cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Array Part 3/Contains an Element/cpp.cpp -------------------------------------------------------------------------------- /Accenture/Array Part 3/Contains an Element/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Array Part 3/Contains an Element/python.py -------------------------------------------------------------------------------- /Accenture/Array Part 3/Count Occurrences/CountOccurrences.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Array Part 3/Count Occurrences/CountOccurrences.java -------------------------------------------------------------------------------- /Accenture/Array Part 3/Count Occurrences/Python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Array Part 3/Count Occurrences/Python.py -------------------------------------------------------------------------------- /Accenture/Array Part 3/Count Occurrences/Q.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Array Part 3/Count Occurrences/Q.txt -------------------------------------------------------------------------------- /Accenture/Array Part 3/Count Occurrences/cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Array Part 3/Count Occurrences/cpp.cpp -------------------------------------------------------------------------------- /Accenture/Array Part 3/array of integers and an integer sum/FindPairWithSum.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Array Part 3/array of integers and an integer sum/FindPairWithSum.java -------------------------------------------------------------------------------- /Accenture/Array Part 3/array of integers and an integer sum/cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Array Part 3/array of integers and an integer sum/cpp.cpp -------------------------------------------------------------------------------- /Accenture/Array Part 3/array of integers and an integer sum/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Array Part 3/array of integers and an integer sum/python.py -------------------------------------------------------------------------------- /Accenture/Array Part 3/average of all positive numbers/AverageOfPositiveNumbers.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Array Part 3/average of all positive numbers/AverageOfPositiveNumbers.java -------------------------------------------------------------------------------- /Accenture/Array Part 3/average of all positive numbers/Q.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Array Part 3/average of all positive numbers/Q.txt -------------------------------------------------------------------------------- /Accenture/Array Part 3/average of all positive numbers/cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Array Part 3/average of all positive numbers/cpp.cpp -------------------------------------------------------------------------------- /Accenture/Array Part 3/average of all positive numbers/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Array Part 3/average of all positive numbers/python.py -------------------------------------------------------------------------------- /Accenture/Array Part 3/index of an equilibrium point/EquilibriumPoint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Array Part 3/index of an equilibrium point/EquilibriumPoint.java -------------------------------------------------------------------------------- /Accenture/Array Part 3/index of an equilibrium point/Q.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Array Part 3/index of an equilibrium point/Q.txt -------------------------------------------------------------------------------- /Accenture/Array Part 3/index of an equilibrium point/cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Array Part 3/index of an equilibrium point/cpp.cpp -------------------------------------------------------------------------------- /Accenture/Array Part 3/index of an equilibrium point/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Array Part 3/index of an equilibrium point/python.py -------------------------------------------------------------------------------- /Accenture/Array Part 3/maximum subarray sum/MaxSubarraySum.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Array Part 3/maximum subarray sum/MaxSubarraySum.java -------------------------------------------------------------------------------- /Accenture/Array Part 3/maximum subarray sum/Python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Array Part 3/maximum subarray sum/Python.py -------------------------------------------------------------------------------- /Accenture/Array Part 3/maximum subarray sum/Q.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Array Part 3/maximum subarray sum/Q.txt -------------------------------------------------------------------------------- /Accenture/Array Part 3/maximum subarray sum/cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Array Part 3/maximum subarray sum/cpp.cpp -------------------------------------------------------------------------------- /Accenture/Array Part 3/minimum value and its index/FindMinAndIndex.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Array Part 3/minimum value and its index/FindMinAndIndex.java -------------------------------------------------------------------------------- /Accenture/Array Part 3/minimum value and its index/Python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Array Part 3/minimum value and its index/Python.py -------------------------------------------------------------------------------- /Accenture/Array Part 3/minimum value and its index/Q.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Array Part 3/minimum value and its index/Q.txt -------------------------------------------------------------------------------- /Accenture/Array Part 3/minimum value and its index/cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Array Part 3/minimum value and its index/cpp.cpp -------------------------------------------------------------------------------- /Accenture/Array Part 3/rotate the array/Q.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Array Part 3/rotate the array/Q.txt -------------------------------------------------------------------------------- /Accenture/Array Part 3/rotate the array/RotateArray.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Array Part 3/rotate the array/RotateArray.java -------------------------------------------------------------------------------- /Accenture/Array Part 3/rotate the array/cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Array Part 3/rotate the array/cpp.cpp -------------------------------------------------------------------------------- /Accenture/Array Part 3/rotate the array/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Array Part 3/rotate the array/python.py -------------------------------------------------------------------------------- /Accenture/August coding ques/22 aug/1.DecodeString/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/August coding ques/22 aug/1.DecodeString/Main.java -------------------------------------------------------------------------------- /Accenture/August coding ques/22 aug/1.DecodeString/cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/August coding ques/22 aug/1.DecodeString/cpp.cpp -------------------------------------------------------------------------------- /Accenture/August coding ques/22 aug/1.DecodeString/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/August coding ques/22 aug/1.DecodeString/python.py -------------------------------------------------------------------------------- /Accenture/August coding ques/22 aug/2.googly/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/August coding ques/22 aug/2.googly/Main.java -------------------------------------------------------------------------------- /Accenture/August coding ques/22 aug/2.googly/cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/August coding ques/22 aug/2.googly/cpp.cpp -------------------------------------------------------------------------------- /Accenture/August coding ques/22 aug/2.googly/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/August coding ques/22 aug/2.googly/python.py -------------------------------------------------------------------------------- /Accenture/August coding ques/7.sum of all the prime numbers between 1 and N/cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/August coding ques/7.sum of all the prime numbers between 1 and N/cpp.cpp -------------------------------------------------------------------------------- /Accenture/August coding ques/7.sum of all the prime numbers between 1 and N/java.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/August coding ques/7.sum of all the prime numbers between 1 and N/java.java -------------------------------------------------------------------------------- /Accenture/August coding ques/7.sum of all the prime numbers between 1 and N/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/August coding ques/7.sum of all the prime numbers between 1 and N/python.py -------------------------------------------------------------------------------- /Accenture/August coding ques/Spiral Matrix/cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/August coding ques/Spiral Matrix/cpp.cpp -------------------------------------------------------------------------------- /Accenture/August coding ques/Spiral Matrix/java.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/August coding ques/Spiral Matrix/java.java -------------------------------------------------------------------------------- /Accenture/August coding ques/Spiral Matrix/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/August coding ques/Spiral Matrix/python.py -------------------------------------------------------------------------------- /Accenture/August coding ques/check prime/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/August coding ques/check prime/Main.java -------------------------------------------------------------------------------- /Accenture/August coding ques/check prime/cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/August coding ques/check prime/cpp.cpp -------------------------------------------------------------------------------- /Accenture/August coding ques/check prime/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/August coding ques/check prime/python.py -------------------------------------------------------------------------------- /Accenture/August coding ques/factorial/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/August coding ques/factorial/Main.java -------------------------------------------------------------------------------- /Accenture/August coding ques/factorial/cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/August coding ques/factorial/cpp.cpp -------------------------------------------------------------------------------- /Accenture/August coding ques/factorial/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/August coding ques/factorial/python.py -------------------------------------------------------------------------------- /Accenture/LinkedList/Clone a LL with random pointers/CloneLinkedList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/LinkedList/Clone a LL with random pointers/CloneLinkedList.java -------------------------------------------------------------------------------- /Accenture/LinkedList/Clone a LL with random pointers/Q.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/LinkedList/Clone a LL with random pointers/Q.txt -------------------------------------------------------------------------------- /Accenture/LinkedList/Clone a LL with random pointers/cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/LinkedList/Clone a LL with random pointers/cpp.cpp -------------------------------------------------------------------------------- /Accenture/LinkedList/Clone a LL with random pointers/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/LinkedList/Clone a LL with random pointers/python.py -------------------------------------------------------------------------------- /Accenture/LinkedList/Reverse LL Recursion/cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/LinkedList/Reverse LL Recursion/cpp.cpp -------------------------------------------------------------------------------- /Accenture/LinkedList/Reverse LL Recursion/java.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/LinkedList/Reverse LL Recursion/java.java -------------------------------------------------------------------------------- /Accenture/LinkedList/Reverse LL Recursion/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/LinkedList/Reverse LL Recursion/python.py -------------------------------------------------------------------------------- /Accenture/LinkedList/Reverse a LL/cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/LinkedList/Reverse a LL/cpp.cpp -------------------------------------------------------------------------------- /Accenture/LinkedList/Reverse a LL/java.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/LinkedList/Reverse a LL/java.java -------------------------------------------------------------------------------- /Accenture/LinkedList/Reverse a LL/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/LinkedList/Reverse a LL/python.py -------------------------------------------------------------------------------- /Accenture/Stacks and queues/Array implementation of queue/StaticQueueinjava.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Stacks and queues/Array implementation of queue/StaticQueueinjava.java -------------------------------------------------------------------------------- /Accenture/Stacks and queues/Array implementation of queue/cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Stacks and queues/Array implementation of queue/cpp.cpp -------------------------------------------------------------------------------- /Accenture/Stacks and queues/Array implementation of queue/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Stacks and queues/Array implementation of queue/python.py -------------------------------------------------------------------------------- /Accenture/Stacks and queues/Implement a Stack Using an Array/cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Stacks and queues/Implement a Stack Using an Array/cpp.cpp -------------------------------------------------------------------------------- /Accenture/Stacks and queues/Implement a Stack Using an Array/java.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Stacks and queues/Implement a Stack Using an Array/java.java -------------------------------------------------------------------------------- /Accenture/Stacks and queues/Implement a Stack Using an Array/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Stacks and queues/Implement a Stack Using an Array/python.py -------------------------------------------------------------------------------- /Accenture/Strings/1. Palindrome Check/PalindromeCheck.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Strings/1. Palindrome Check/PalindromeCheck.java -------------------------------------------------------------------------------- /Accenture/Strings/1. Palindrome Check/Q.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Strings/1. Palindrome Check/Q.txt -------------------------------------------------------------------------------- /Accenture/Strings/1. Palindrome Check/cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Strings/1. Palindrome Check/cpp.cpp -------------------------------------------------------------------------------- /Accenture/Strings/1. Palindrome Check/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Strings/1. Palindrome Check/python.py -------------------------------------------------------------------------------- /Accenture/Strings/2. Binary Operation/BinaryOperations.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Strings/2. Binary Operation/BinaryOperations.java -------------------------------------------------------------------------------- /Accenture/Strings/2. Binary Operation/cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Strings/2. Binary Operation/cpp.cpp -------------------------------------------------------------------------------- /Accenture/Strings/2. Binary Operation/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Strings/2. Binary Operation/python.py -------------------------------------------------------------------------------- /Accenture/Strings/3. Replace Character/Q.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Strings/3. Replace Character/Q.txt -------------------------------------------------------------------------------- /Accenture/Strings/3. Replace Character/ReplaceCharacter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Strings/3. Replace Character/ReplaceCharacter.java -------------------------------------------------------------------------------- /Accenture/Strings/3. Replace Character/cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Strings/3. Replace Character/cpp.cpp -------------------------------------------------------------------------------- /Accenture/Strings/3. Replace Character/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Strings/3. Replace Character/python.py -------------------------------------------------------------------------------- /Accenture/Strings/4. Anagram Problem/AnagramChecker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Strings/4. Anagram Problem/AnagramChecker.java -------------------------------------------------------------------------------- /Accenture/Strings/4. Anagram Problem/Q.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Strings/4. Anagram Problem/Q.txt -------------------------------------------------------------------------------- /Accenture/Strings/4. Anagram Problem/cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Strings/4. Anagram Problem/cpp.cpp -------------------------------------------------------------------------------- /Accenture/Strings/4. Anagram Problem/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Strings/4. Anagram Problem/python.py -------------------------------------------------------------------------------- /Accenture/Strings/5. Reverse Words/Q.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Strings/5. Reverse Words/Q.txt -------------------------------------------------------------------------------- /Accenture/Strings/5. Reverse Words/ReverseWords.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Strings/5. Reverse Words/ReverseWords.java -------------------------------------------------------------------------------- /Accenture/Strings/5. Reverse Words/cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Strings/5. Reverse Words/cpp.cpp -------------------------------------------------------------------------------- /Accenture/Strings/5. Reverse Words/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Strings/5. Reverse Words/python.py -------------------------------------------------------------------------------- /Accenture/Strings/6. String transformation/Q.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Strings/6. String transformation/Q.txt -------------------------------------------------------------------------------- /Accenture/Strings/6. String transformation/StringTransformation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Strings/6. String transformation/StringTransformation.java -------------------------------------------------------------------------------- /Accenture/Strings/6. String transformation/cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Strings/6. String transformation/cpp.cpp -------------------------------------------------------------------------------- /Accenture/Strings/6. String transformation/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Accenture/Strings/6. String transformation/python.py -------------------------------------------------------------------------------- /Infosys/Part 1/1.swap two arrays/SwapArrays.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Infosys/Part 1/1.swap two arrays/SwapArrays.java -------------------------------------------------------------------------------- /Infosys/Part 1/1.swap two arrays/cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Infosys/Part 1/1.swap two arrays/cpp.cpp -------------------------------------------------------------------------------- /Infosys/Part 1/1.swap two arrays/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Infosys/Part 1/1.swap two arrays/python.py -------------------------------------------------------------------------------- /Infosys/Part 1/10.smallest and largest number in an array/cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Infosys/Part 1/10.smallest and largest number in an array/cpp.cpp -------------------------------------------------------------------------------- /Infosys/Part 1/10.smallest and largest number in an array/java.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Infosys/Part 1/10.smallest and largest number in an array/java.java -------------------------------------------------------------------------------- /Infosys/Part 1/10.smallest and largest number in an array/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Infosys/Part 1/10.smallest and largest number in an array/python.py -------------------------------------------------------------------------------- /Infosys/Part 1/2.Sort String of Characters/cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Infosys/Part 1/2.Sort String of Characters/cpp.cpp -------------------------------------------------------------------------------- /Infosys/Part 1/2.Sort String of Characters/java.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Infosys/Part 1/2.Sort String of Characters/java.java -------------------------------------------------------------------------------- /Infosys/Part 1/2.Sort String of Characters/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Infosys/Part 1/2.Sort String of Characters/python.py -------------------------------------------------------------------------------- /Infosys/Part 1/3. count the number of unique characters/cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Infosys/Part 1/3. count the number of unique characters/cpp.cpp -------------------------------------------------------------------------------- /Infosys/Part 1/3. count the number of unique characters/java.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Infosys/Part 1/3. count the number of unique characters/java.java -------------------------------------------------------------------------------- /Infosys/Part 1/3. count the number of unique characters/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Infosys/Part 1/3. count the number of unique characters/python.py -------------------------------------------------------------------------------- /Infosys/Part 1/4.multiply two matrices/cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Infosys/Part 1/4.multiply two matrices/cpp.cpp -------------------------------------------------------------------------------- /Infosys/Part 1/4.multiply two matrices/java.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Infosys/Part 1/4.multiply two matrices/java.java -------------------------------------------------------------------------------- /Infosys/Part 1/4.multiply two matrices/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Infosys/Part 1/4.multiply two matrices/python.py -------------------------------------------------------------------------------- /Infosys/Part 1/5.find the area of the incircle of a right-angled triangle/cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Infosys/Part 1/5.find the area of the incircle of a right-angled triangle/cpp.cpp -------------------------------------------------------------------------------- /Infosys/Part 1/5.find the area of the incircle of a right-angled triangle/java.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Infosys/Part 1/5.find the area of the incircle of a right-angled triangle/java.java -------------------------------------------------------------------------------- /Infosys/Part 1/5.find the area of the incircle of a right-angled triangle/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Infosys/Part 1/5.find the area of the incircle of a right-angled triangle/python.py -------------------------------------------------------------------------------- /Infosys/Part 1/6.temperature from Fahrenheit to Celsius/TemperatureConversion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Infosys/Part 1/6.temperature from Fahrenheit to Celsius/TemperatureConversion.java -------------------------------------------------------------------------------- /Infosys/Part 1/6.temperature from Fahrenheit to Celsius/cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Infosys/Part 1/6.temperature from Fahrenheit to Celsius/cpp.cpp -------------------------------------------------------------------------------- /Infosys/Part 1/6.temperature from Fahrenheit to Celsius/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Infosys/Part 1/6.temperature from Fahrenheit to Celsius/python.py -------------------------------------------------------------------------------- /Infosys/Part 1/7.sum of all the prime numbers between 1 and N/cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Infosys/Part 1/7.sum of all the prime numbers between 1 and N/cpp.cpp -------------------------------------------------------------------------------- /Infosys/Part 1/7.sum of all the prime numbers between 1 and N/java.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Infosys/Part 1/7.sum of all the prime numbers between 1 and N/java.java -------------------------------------------------------------------------------- /Infosys/Part 1/7.sum of all the prime numbers between 1 and N/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Infosys/Part 1/7.sum of all the prime numbers between 1 and N/python.py -------------------------------------------------------------------------------- /Infosys/Part 1/8.make the largest number from the digits of the array/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Infosys/Part 1/8.make the largest number from the digits of the array/Solution.java -------------------------------------------------------------------------------- /Infosys/Part 1/8.make the largest number from the digits of the array/cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Infosys/Part 1/8.make the largest number from the digits of the array/cpp.cpp -------------------------------------------------------------------------------- /Infosys/Part 1/8.make the largest number from the digits of the array/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Infosys/Part 1/8.make the largest number from the digits of the array/python.py -------------------------------------------------------------------------------- /Infosys/Part 1/9.converts decimal numbers to binary numbers/cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Infosys/Part 1/9.converts decimal numbers to binary numbers/cpp.cpp -------------------------------------------------------------------------------- /Infosys/Part 1/9.converts decimal numbers to binary numbers/java.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Infosys/Part 1/9.converts decimal numbers to binary numbers/java.java -------------------------------------------------------------------------------- /Infosys/Part 1/9.converts decimal numbers to binary numbers/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Infosys/Part 1/9.converts decimal numbers to binary numbers/python.py -------------------------------------------------------------------------------- /Infosys/Part 2/1.find the next permutation of the given string/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Infosys/Part 2/1.find the next permutation of the given string/Solution.java -------------------------------------------------------------------------------- /Infosys/Part 2/1.find the next permutation of the given string/cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Infosys/Part 2/1.find the next permutation of the given string/cpp.cpp -------------------------------------------------------------------------------- /Infosys/Part 2/1.find the next permutation of the given string/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Infosys/Part 2/1.find the next permutation of the given string/python.py -------------------------------------------------------------------------------- /Infosys/Part 2/10.subtraction of two matrices/SwapArrays.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Infosys/Part 2/10.subtraction of two matrices/SwapArrays.java -------------------------------------------------------------------------------- /Infosys/Part 2/10.subtraction of two matrices/cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Infosys/Part 2/10.subtraction of two matrices/cpp.cpp -------------------------------------------------------------------------------- /Infosys/Part 2/10.subtraction of two matrices/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Infosys/Part 2/10.subtraction of two matrices/python.py -------------------------------------------------------------------------------- /Infosys/Part 2/2.find the missing characters that are needed to make the string a pangram/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Infosys/Part 2/2.find the missing characters that are needed to make the string a pangram/Main.java -------------------------------------------------------------------------------- /Infosys/Part 2/2.find the missing characters that are needed to make the string a pangram/cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Infosys/Part 2/2.find the missing characters that are needed to make the string a pangram/cpp.cpp -------------------------------------------------------------------------------- /Infosys/Part 2/2.find the missing characters that are needed to make the string a pangram/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Infosys/Part 2/2.find the missing characters that are needed to make the string a pangram/python.py -------------------------------------------------------------------------------- /Infosys/Part 2/3. form a triangle such that the last row of the triangle contains all the elements of the array and the row above it will contain the sum of two elements below it/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Infosys/Part 2/3. form a triangle such that the last row of the triangle contains all the elements of the array and the row above it will contain the sum of two elements below it/Solution.java -------------------------------------------------------------------------------- /Infosys/Part 2/3. form a triangle such that the last row of the triangle contains all the elements of the array and the row above it will contain the sum of two elements below it/cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Infosys/Part 2/3. form a triangle such that the last row of the triangle contains all the elements of the array and the row above it will contain the sum of two elements below it/cpp.cpp -------------------------------------------------------------------------------- /Infosys/Part 2/3. form a triangle such that the last row of the triangle contains all the elements of the array and the row above it will contain the sum of two elements below it/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Infosys/Part 2/3. form a triangle such that the last row of the triangle contains all the elements of the array and the row above it will contain the sum of two elements below it/python.py -------------------------------------------------------------------------------- /Infosys/Part 2/4.find the maximum profit you can earn by selling them/SwapArrays.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Infosys/Part 2/4.find the maximum profit you can earn by selling them/SwapArrays.java -------------------------------------------------------------------------------- /Infosys/Part 2/4.find the maximum profit you can earn by selling them/cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Infosys/Part 2/4.find the maximum profit you can earn by selling them/cpp.cpp -------------------------------------------------------------------------------- /Infosys/Part 2/4.find the maximum profit you can earn by selling them/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Infosys/Part 2/4.find the maximum profit you can earn by selling them/python.py -------------------------------------------------------------------------------- /Infosys/Part 2/5.given a matrix that contains only 0 and 1, find the maximum size of a rectangle that contains only 1/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Infosys/Part 2/5.given a matrix that contains only 0 and 1, find the maximum size of a rectangle that contains only 1/Solution.java -------------------------------------------------------------------------------- /Infosys/Part 2/5.given a matrix that contains only 0 and 1, find the maximum size of a rectangle that contains only 1/cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Infosys/Part 2/5.given a matrix that contains only 0 and 1, find the maximum size of a rectangle that contains only 1/cpp.cpp -------------------------------------------------------------------------------- /Infosys/Part 2/5.given a matrix that contains only 0 and 1, find the maximum size of a rectangle that contains only 1/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Infosys/Part 2/5.given a matrix that contains only 0 and 1, find the maximum size of a rectangle that contains only 1/python.py -------------------------------------------------------------------------------- /Infosys/Part 2/6.Given the coordinates of the endpoints of two rectangles, find whether they overlap each other or not/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Infosys/Part 2/6.Given the coordinates of the endpoints of two rectangles, find whether they overlap each other or not/Solution.java -------------------------------------------------------------------------------- /Infosys/Part 2/6.Given the coordinates of the endpoints of two rectangles, find whether they overlap each other or not/cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Infosys/Part 2/6.Given the coordinates of the endpoints of two rectangles, find whether they overlap each other or not/cpp.cpp -------------------------------------------------------------------------------- /Infosys/Part 2/6.Given the coordinates of the endpoints of two rectangles, find whether they overlap each other or not/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Infosys/Part 2/6.Given the coordinates of the endpoints of two rectangles, find whether they overlap each other or not/python.py -------------------------------------------------------------------------------- /Infosys/Part 2/7.find whether we can convert one string to another by rotating it in two places/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Infosys/Part 2/7.find whether we can convert one string to another by rotating it in two places/Solution.java -------------------------------------------------------------------------------- /Infosys/Part 2/7.find whether we can convert one string to another by rotating it in two places/cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Infosys/Part 2/7.find whether we can convert one string to another by rotating it in two places/cpp.cpp -------------------------------------------------------------------------------- /Infosys/Part 2/7.find whether we can convert one string to another by rotating it in two places/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Infosys/Part 2/7.find whether we can convert one string to another by rotating it in two places/python.py -------------------------------------------------------------------------------- /Infosys/Part 2/8.Given a string that only contains lowercase characters, find the first unique character/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Infosys/Part 2/8.Given a string that only contains lowercase characters, find the first unique character/Solution.java -------------------------------------------------------------------------------- /Infosys/Part 2/8.Given a string that only contains lowercase characters, find the first unique character/cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Infosys/Part 2/8.Given a string that only contains lowercase characters, find the first unique character/cpp.cpp -------------------------------------------------------------------------------- /Infosys/Part 2/8.Given a string that only contains lowercase characters, find the first unique character/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Infosys/Part 2/8.Given a string that only contains lowercase characters, find the first unique character/python.py -------------------------------------------------------------------------------- /Infosys/Part 2/9.How do you rotate a matrix by 90 degrees/SwapArrays.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Infosys/Part 2/9.How do you rotate a matrix by 90 degrees/SwapArrays.java -------------------------------------------------------------------------------- /Infosys/Part 2/9.How do you rotate a matrix by 90 degrees/cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Infosys/Part 2/9.How do you rotate a matrix by 90 degrees/cpp.cpp -------------------------------------------------------------------------------- /Infosys/Part 2/9.How do you rotate a matrix by 90 degrees/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashc9602/Coding-Sheets---Prime-Coding/HEAD/Infosys/Part 2/9.How do you rotate a matrix by 90 degrees/python.py --------------------------------------------------------------------------------