├── .vscode └── settings.json ├── ArrayWavePrint └── ColumnWise │ └── CPP │ └── ArrayWavePrint(COLUMN_WISE).C++ ├── BFS └── CPP │ └── BFS.cpp ├── BankersAlgorithm └── C │ └── BankersAlgorithm.c ├── Bellman-Ford └── Bellman Ford.cpp ├── BinarySearchInDart ├── BinarySearchTree ├── C++ │ ├── BinarySearchAlgorithm.cpp │ └── OptimalBinarySearchTreeUsingDP.c++ ├── C │ └── BinarySearchTree.c ├── Java │ └── BinarySearchTree.java └── python │ └── BinarySearchTree.py ├── BinomialHeapImplementation └── C │ └── binomialheap.c ├── Bitwise └── CPP │ └── UniqueNumberBitwise .c++ ├── C++ Stl problem ├── FindThePoint.cpp ├── Question 2.md ├── Question.md ├── solution 2.cpp ├── solution.cpp └── usingcomparators_stl.cpp ├── Codechef └── CPP │ ├── Codechef_CPP_COLE2020_DooffiresBrackets_CLBRKT.cpp │ ├── Div2_August_2020 │ ├── CHEFWARS.cpp │ ├── CHEFWED.cpp │ ├── CRDGAME3.cpp │ ├── LINCHESS.cpp │ ├── SKMP.cpp │ └── problem_links.md │ ├── Div2_July_2020 │ ├── ADAKING.cpp │ ├── CHEFNSWAPS.cpp │ ├── CHEFSTR1.cpp │ ├── CRDGAME.cpp │ ├── DRCHEF.cpp │ ├── PTMSSNG.cpp │ └── problem_links.md │ ├── Div2_June_2020 │ ├── CHEFICRM.cpp │ ├── EOEO.cpp │ ├── EVENM.cpp │ ├── PRICECON.cpp │ ├── XYSTR.cpp │ └── problem_links.md │ ├── Div2_May_cookoff_2020 │ ├── CHEFRECP.cpp │ ├── CHEFSHIP.CPP │ ├── CHEFSQUD.cpp │ ├── CHFIMPRS.cpp │ ├── CROADS.cpp │ └── problem_links.md │ ├── Div2_May_lunchtime2020 │ ├── CHEFZRON.cpp │ ├── CONVSTR.cpp │ ├── LOSTWKND.cpp │ ├── TREDIFF.cpp │ ├── WWALK.cpp │ └── problem_links.md │ ├── Div2_October_cookoff_2020 │ ├── Decreasing_Srrnmieeda.cpp │ ├── Path_etic_Sums.cpp │ ├── Split_the_Str_Ing.cpp │ └── Yet_Another_Crossover_Episode.cpp │ ├── Div2_September_2020 │ ├── ADAMAT_September.cpp │ ├── CHFNSWAP_September.cpp │ ├── COVID19B_September.cpp │ ├── CRDGAME2_September.cpp │ ├── EQDIV_September.cpp │ ├── FINXOR_September.cpp │ ├── MOVCOIN2_September.cpp │ ├── ROTATPOL_September.cpp │ ├── TREE2_September.cpp │ ├── VBR_September.cpp │ └── problem_links.md │ └── Div2_September_cookoff_2020 │ ├── BOWLERS.cpp │ ├── BULBS.CPP │ ├── MININS.cpp │ ├── MVAL.cpp │ └── problem_links.md ├── Codeforces └── CPP │ ├── 653 │ └── E1ReadingBooks.cpp │ ├── 665 div_2 │ ├── A.cpp │ └── problem_links.md │ ├── 666 div_2 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ └── problem_links.md │ ├── 671 div_2 │ ├── A_Digit_Game.cpp │ ├── B_Stairs.cpp │ ├── C_Killjoy.cpp │ ├── D1_Sage_s_Birthday_easy_version_.cpp │ ├── D2_Sage_s_Birthday_hard_version_.cpp │ └── problem_links.md │ ├── 672 div_2 │ ├── A_Cubes_Sorting.cpp │ ├── B_Rock_and_Lever.cpp │ ├── C1_Pok_mon_Army_easy_version_.cpp │ └── problem_links.md │ ├── 674 div_3 │ ├── A.cpp │ ├── B.cpp │ └── problem_links.md │ ├── Codeforces Round #110 (Div. 2) │ ├── B.cpp │ └── E.cpp │ ├── Codeforces Round #207 (Div. 1) │ └── B.cpp │ ├── Codeforces_667_Div3 │ ├── A.cpp │ └── B.cpp │ ├── Contest_name │ └── Watermelon.c++ │ ├── Educational Codeforces Round 23 │ ├── A.cpp │ ├── B.cpp │ └── E.cpp │ ├── Round #667 DIv. 3 │ └── Yet Another Array Restoration.cpp │ ├── School Team Contest #2 (Winter Computer School 2010 │ └── E.cpp │ └── grankforce │ ├── A_Circle_Coloring.cpp │ ├── B_Arrays_Sum.cpp │ ├── C_Discrete_Acceleration.cpp │ ├── D_Searchlights.cpp │ └── problem_links.md ├── ConvertBinaryNumbertoOctalAndVice-versa └── C++ │ └── BinaryToOctalVice-versa.C++.cpp ├── CountingDivisors └── CPP │ └── CountingDivisors.cpp ├── DFS └── CPP │ └── DFS.cpp ├── DSU on Trees └── CPP │ └── DSU on Trees.cpp ├── DSU └── DSU.cpp ├── Dijsktra's_algo ├── Algorithm │ ├── Dijsktra's_algo.md │ └── images │ │ ├── dj1.jpg │ │ ├── dj2.jpg │ │ ├── dj3.jpg │ │ ├── dj4.jpg │ │ ├── dj5.jpg │ │ └── dj6.jpg ├── CPP │ └── dijsktra's_algo.CPP ├── java │ └── dijsktra's_algo.java ├── js │ └── dijsktra's_algo.js └── python │ └── dijsktra's_algo.py ├── DisjoinSetUnion └── CPP │ └── DSU.cpp ├── DutchFlagProblem └── CPP │ └── DutchFlagProblem.cpp ├── Dynamic Programming ├── Equal_sum_partition.cpp ├── Knapsack.cpp └── Subset Sum Problem.cpp ├── FibonacciNumbers.c ├── Fibonnaci_Number_using_Matrix_Exponentiation └── C++ │ └── Fibonacci.cpp ├── FindMissingNumber └── CPP │ └── FindMissingNumber.C++ ├── FrontEndWebsite ├── Animated (Landing)Home Page │ ├── LICENSE │ ├── README.md │ ├── index.html │ └── main.css ├── Card Website Project 1 │ ├── .DS_Store │ ├── README.md │ ├── assets │ │ ├── .DS_Store │ │ ├── css │ │ │ └── main.css │ │ └── icofont │ │ │ ├── .DS_Store │ │ │ ├── fonts │ │ │ ├── .DS_Store │ │ │ ├── icofont.eot │ │ │ ├── icofont.svg │ │ │ ├── icofont.ttf │ │ │ ├── icofont.woff │ │ │ └── icofont.woff2 │ │ │ └── icofont.min.css │ ├── img │ │ └── felipe-marmol-wh7ftWYLMa8-unsplash.jpg │ └── index.html ├── Card Website Project 2 │ ├── README.md │ ├── assets │ │ ├── css │ │ │ └── main.css │ │ └── icofont │ │ │ ├── fonts │ │ │ ├── icofont.eot │ │ │ ├── icofont.svg │ │ │ ├── icofont.ttf │ │ │ ├── icofont.woff │ │ │ └── icofont.woff2 │ │ │ └── icofont.min.css │ ├── img │ │ ├── chester-wade-msnyz9L6gs4-unsplash.jpg │ │ └── felipe-marmol-wh7ftWYLMa8-unsplash.jpg │ └── index.html ├── Card Website Project 3 │ ├── .DS_Store │ ├── README.md │ ├── assets │ │ ├── .DS_Store │ │ ├── css │ │ │ └── main.css │ │ └── icofont │ │ │ ├── .DS_Store │ │ │ ├── fonts │ │ │ ├── .DS_Store │ │ │ ├── icofont.eot │ │ │ ├── icofont.svg │ │ │ ├── icofont.ttf │ │ │ ├── icofont.woff │ │ │ └── icofont.woff2 │ │ │ └── icofont.min.css │ ├── img │ │ ├── .DS_Store │ │ └── chester-wade-msnyz9L6gs4-unsplash.jpg │ └── index.html ├── Tap Music │ ├── README.md │ ├── app.js │ ├── index.html │ ├── sounds │ │ ├── bubbles.mp3 │ │ ├── clay.mp3 │ │ ├── confetti.mp3 │ │ ├── glimmer.mp3 │ │ ├── moon.mp3 │ │ └── ufo.mp3 │ └── style.css └── TeamMemberWebsite │ ├── FrontEndWebsite │ └── Drum_Kit │ │ ├── Bass-Drum.mp3 │ │ ├── crash.mp3 │ │ ├── crash.png │ │ ├── index.html │ │ ├── index.js │ │ ├── kick-bass.mp3 │ │ ├── kick.png │ │ ├── readme.md │ │ ├── snare.mp3 │ │ ├── snare.png │ │ ├── styles.css │ │ ├── tom-1.mp3 │ │ ├── tom-2.mp3 │ │ ├── tom-3.mp3 │ │ ├── tom-4.mp3 │ │ ├── tom1.png │ │ ├── tom2.png │ │ ├── tom3.png │ │ └── tom4.png │ └── team │ ├── .vscode │ └── settings.json │ ├── 3.jpg │ ├── Imortant Note.txt │ ├── README.md │ ├── images.jpg │ ├── index.html │ ├── team-3.jpg │ ├── team-4.jpg │ ├── team-5.jpg │ └── team-6.jpg ├── GoGradeProgram └── grade.go ├── Graph Problem └── CPP │ ├── AllTestCases.md │ ├── Constraints.md │ ├── Kahn.cpp │ ├── Qus(Religious People).md │ ├── code.c++ │ ├── explanation&Hint.md │ └── sample input&output.md ├── Graph-Algo-Using-C ├── 01.Graph_using_adjacency_matrix.c ├── 02.Graph_using_adjacency_list.c ├── 03.Graph_DFS.c ├── 04.Graph_BFS.c ├── 05.Kruskal.c ├── 06.prims.c └── Readme.md ├── Graphs └── C++ │ └── KosarajusAlgorithm.cpp ├── GuessNumberGame └── guess.c ├── Hangman game.py ├── HouseRobber └── CPP │ └── HouseRobber.cpp ├── Imakshat47_binary2DecimalBasic.cpp ├── Imakshat47_binary2DecimalUsingInBuildFun.cpp ├── Imakshat47_binary2DecimalUsingString.cpp ├── Imakshat47_binary2Octal.cpp ├── Imakshat47_decimal2OctalBasic.cpp ├── Imakshat47_decimal2OctalFormula.cpp ├── Imakshat47_decimal2binaryBasicArray.cpp ├── Imakshat47_decimal2binaryBasicVoid.cpp ├── Imakshat47_decimal2binaryUsingBitwise.cpp ├── Imakshat47_octal2binary.cpp ├── ImplementStrstr └── CPP │ └── ImplementFunctionStrstr.cpp ├── Interviewbit └── StackQueue │ ├── balanced_parantheses.cpp │ ├── first_non_repeating_character.cpp │ └── redundant_braces.cpp ├── InvertionCount └── CPP │ └── InvertionCount.cpp ├── Job Sequencing └── sequencing.cpp ├── KMP └── CPP │ └── KMP.cpp ├── Kadane'sAlgorithm ├── CPP │ └── Kadane'sAlgo.C++ └── Python │ └── Kadane'sAlgorithm.py ├── Krishnamurthy Number ├── Krishnamurthy_number.cpp └── readme.md ├── Kruskal's_Algorithm └── CPP │ └── kruskal_algorithm.cpp ├── LICENSE ├── Lcs └── CPP │ └── longestCommonSubsequence.cpp ├── Mad libs game.py ├── PatternProblems ├── HollowDiamondInscribedInRectanglePattern │ ├── C++ │ │ └── HollowDiamondInscribedInRectanglePattern.C++ │ ├── C │ │ └── HollowDiamondInscribedInRectanglePattern.C │ └── Java │ │ └── HollowDiamondInscribedInRectanglePattern.java └── PyramidPatternProblem │ ├── C++ │ └── PyramidPatternProblem1.cpp │ ├── C │ └── pyramidpattern1.c │ ├── JAVA │ └── PyramidPattern1.java │ └── PYTHON │ └── pyramidpattern1.py ├── Programmer's day special wish.py ├── README.md ├── Recursion └── Flood_fill_algorithm.cpp ├── RotateTheArray ├── C++ │ └── Rotate_The_Array.cpp ├── C │ └── RotateArrayByN.c ├── Java │ ├── RotateArrayGCD.java │ └── RotateTheArray.java ├── Python │ └── ArrayRotation.py ├── Swift │ └── RotateTheArray.swift └── different_array_rotations │ ├── common_sub_seq_array.cpp │ ├── left_rotation_array.cpp │ ├── rotate_2d_array.cpp │ ├── rotate_array_by_someval.cpp │ ├── spiral_array.cpp │ └── two_array_r_equal_not.cpp ├── RottenOranges └── C++ │ └── RottenOranges.C++ ├── STL-unordered_map ├── Problem.md └── freq_count.cpp ├── STL └── CPP │ ├── insert-sorted-ll.cpp │ ├── minimum_cost_of_ropes.cpp │ ├── partition in C++ STL │ ├── returnDistanceToTheNearestVowel.cpp │ ├── reverse-ll.cpp │ ├── subarray_sum.cpp │ ├── triplet_sum.cpp │ └── valid_parentheses.cpp ├── SegmentTree └── CPP │ └── SegmentTree.C++ ├── SortingAlgorithms ├── C++ │ ├── BucketSort.cpp │ ├── CountingSort.C++ │ ├── InsertionSort.CPP │ ├── SelectionSort.CPP │ ├── paritoshkray_MergeSort.cpp │ └── zahinekbal_bubbleSort_STL(Comparater-Function).C++ ├── C │ ├── Bubble_Sort.c │ ├── HeapSort.c │ ├── InsertionSort.c │ ├── Merge_Sort.c │ └── Selection_Sort.c ├── Kotlin │ └── BubbleSort.kt ├── java │ ├── BubbleSort.java │ ├── HeapSort.java │ ├── InsertionSort.java │ ├── QuickSort.java │ └── SelectionSort.java └── python │ ├── MergeSort.py │ ├── SelectionSort.py │ ├── ShellSort.py │ ├── bubbleSort.py │ ├── insertion sort.py │ └── optimiesd bubble sort.py ├── SpiralPrintArray └── CPP │ └── ArraySpiralPrint(Clockwise).c++ ├── StairCaseProblem └── C++ │ └── stair.cpp ├── StandardDeviation └── StandardDeviation.cpp ├── SubsetSum └── CPP │ └── SubsetSum.cpp ├── SumOf_n^2 └── C++ │ └── SumOf_n^2.C++ ├── SumOfcubes └── C++ │ └── SumOfcubes.C++ ├── SwappingOfNumbers └── C++ │ └── CyclicOrderUsingCallByReference.C++ ├── TowerOfHanoi ├── hanoi.py └── tower_of_hanoi.cpp ├── Vector(STL) ├── Question.md └── VectorSort.cpp ├── Z-Algorithm └── CPP │ └── Z Algorithm.cpp ├── assembly.s ├── binary2DecimalBasic.c ├── codeforces └── CPP │ └── 656 │ ├── Three-Pairwise-Maximums.cpp │ └── ThreePairwiseMaximums.cpp ├── decimal2OctalBasic.c ├── decimal2binaryBasicVoid.c ├── decimal2binaryUsingBitwise.c ├── docker └── flask │ ├── Dockerfile │ ├── app.py │ ├── docker-compose.yml │ └── requirements.txt ├── hackerrank ├── Aray │ └── 2D_array.cpp ├── FibonacciNumber.java ├── FibonacciNumbers.cpp ├── FlippingBits.cpp ├── FlippingBits.java ├── Primality.cpp ├── Primality.java ├── maps │ └── imakshat47_mapsQuery.cpp ├── sets │ └── imakshat47_stlSets.cpp ├── sort │ ├── imakshat47_complexSorting.cpp │ └── imakshat47_maxElement.cpp └── vector │ ├── imakshat47_vectorDynamicErase.cpp │ ├── imakshat47_vectorLowerBound.cpp │ └── imakshat47_vectorSort.cpp ├── img ├── Anjali.jpeg ├── AswinCG2002.jpg ├── Cuncis.jpeg ├── DeepamPriyadarshi.jpg ├── Ishika.jpg ├── Jay_Shukla.jpg ├── Kunal888.jpg ├── NishantBhatia.jpeg ├── Vishi13.jpg ├── ashfaqahmed.jpg ├── cedric-img-portrait-2.png ├── rahul.jpeg ├── rajarshi.jpg ├── sai_pranay.jpg └── zahinekbal.jpg ├── isUnique └── isUnique.cpp ├── modular-exponentiation └── modular-exponentiation.cpp ├── octal2binary.c ├── python ├── Bunny_Prisoners_plates.py ├── Checking-Prime-Number.py ├── Factorial-of-a-number-in-Python.py ├── JadooAndDNATranscription.py └── telegrambot.py └── transformation_in_2D_triangle.cpp /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /ArrayWavePrint/ColumnWise/CPP/ArrayWavePrint(COLUMN_WISE).C++: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/ArrayWavePrint/ColumnWise/CPP/ArrayWavePrint(COLUMN_WISE).C++ -------------------------------------------------------------------------------- /BFS/CPP/BFS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/BFS/CPP/BFS.cpp -------------------------------------------------------------------------------- /BankersAlgorithm/C/BankersAlgorithm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/BankersAlgorithm/C/BankersAlgorithm.c -------------------------------------------------------------------------------- /Bellman-Ford/Bellman Ford.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Bellman-Ford/Bellman Ford.cpp -------------------------------------------------------------------------------- /BinarySearchInDart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/BinarySearchInDart -------------------------------------------------------------------------------- /BinarySearchTree/C++/BinarySearchAlgorithm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/BinarySearchTree/C++/BinarySearchAlgorithm.cpp -------------------------------------------------------------------------------- /BinarySearchTree/C++/OptimalBinarySearchTreeUsingDP.c++: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/BinarySearchTree/C++/OptimalBinarySearchTreeUsingDP.c++ -------------------------------------------------------------------------------- /BinarySearchTree/C/BinarySearchTree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/BinarySearchTree/C/BinarySearchTree.c -------------------------------------------------------------------------------- /BinarySearchTree/Java/BinarySearchTree.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/BinarySearchTree/Java/BinarySearchTree.java -------------------------------------------------------------------------------- /BinarySearchTree/python/BinarySearchTree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/BinarySearchTree/python/BinarySearchTree.py -------------------------------------------------------------------------------- /BinomialHeapImplementation/C/binomialheap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/BinomialHeapImplementation/C/binomialheap.c -------------------------------------------------------------------------------- /Bitwise/CPP/UniqueNumberBitwise .c++: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Bitwise/CPP/UniqueNumberBitwise .c++ -------------------------------------------------------------------------------- /C++ Stl problem/FindThePoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/C++ Stl problem/FindThePoint.cpp -------------------------------------------------------------------------------- /C++ Stl problem/Question 2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/C++ Stl problem/Question 2.md -------------------------------------------------------------------------------- /C++ Stl problem/Question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/C++ Stl problem/Question.md -------------------------------------------------------------------------------- /C++ Stl problem/solution 2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/C++ Stl problem/solution 2.cpp -------------------------------------------------------------------------------- /C++ Stl problem/solution.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/C++ Stl problem/solution.cpp -------------------------------------------------------------------------------- /C++ Stl problem/usingcomparators_stl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/C++ Stl problem/usingcomparators_stl.cpp -------------------------------------------------------------------------------- /Codechef/CPP/Codechef_CPP_COLE2020_DooffiresBrackets_CLBRKT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codechef/CPP/Codechef_CPP_COLE2020_DooffiresBrackets_CLBRKT.cpp -------------------------------------------------------------------------------- /Codechef/CPP/Div2_August_2020/CHEFWARS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codechef/CPP/Div2_August_2020/CHEFWARS.cpp -------------------------------------------------------------------------------- /Codechef/CPP/Div2_August_2020/CHEFWED.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codechef/CPP/Div2_August_2020/CHEFWED.cpp -------------------------------------------------------------------------------- /Codechef/CPP/Div2_August_2020/CRDGAME3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codechef/CPP/Div2_August_2020/CRDGAME3.cpp -------------------------------------------------------------------------------- /Codechef/CPP/Div2_August_2020/LINCHESS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codechef/CPP/Div2_August_2020/LINCHESS.cpp -------------------------------------------------------------------------------- /Codechef/CPP/Div2_August_2020/SKMP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codechef/CPP/Div2_August_2020/SKMP.cpp -------------------------------------------------------------------------------- /Codechef/CPP/Div2_August_2020/problem_links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codechef/CPP/Div2_August_2020/problem_links.md -------------------------------------------------------------------------------- /Codechef/CPP/Div2_July_2020/ADAKING.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codechef/CPP/Div2_July_2020/ADAKING.cpp -------------------------------------------------------------------------------- /Codechef/CPP/Div2_July_2020/CHEFNSWAPS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codechef/CPP/Div2_July_2020/CHEFNSWAPS.cpp -------------------------------------------------------------------------------- /Codechef/CPP/Div2_July_2020/CHEFSTR1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codechef/CPP/Div2_July_2020/CHEFSTR1.cpp -------------------------------------------------------------------------------- /Codechef/CPP/Div2_July_2020/CRDGAME.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codechef/CPP/Div2_July_2020/CRDGAME.cpp -------------------------------------------------------------------------------- /Codechef/CPP/Div2_July_2020/DRCHEF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codechef/CPP/Div2_July_2020/DRCHEF.cpp -------------------------------------------------------------------------------- /Codechef/CPP/Div2_July_2020/PTMSSNG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codechef/CPP/Div2_July_2020/PTMSSNG.cpp -------------------------------------------------------------------------------- /Codechef/CPP/Div2_July_2020/problem_links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codechef/CPP/Div2_July_2020/problem_links.md -------------------------------------------------------------------------------- /Codechef/CPP/Div2_June_2020/CHEFICRM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codechef/CPP/Div2_June_2020/CHEFICRM.cpp -------------------------------------------------------------------------------- /Codechef/CPP/Div2_June_2020/EOEO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codechef/CPP/Div2_June_2020/EOEO.cpp -------------------------------------------------------------------------------- /Codechef/CPP/Div2_June_2020/EVENM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codechef/CPP/Div2_June_2020/EVENM.cpp -------------------------------------------------------------------------------- /Codechef/CPP/Div2_June_2020/PRICECON.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codechef/CPP/Div2_June_2020/PRICECON.cpp -------------------------------------------------------------------------------- /Codechef/CPP/Div2_June_2020/XYSTR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codechef/CPP/Div2_June_2020/XYSTR.cpp -------------------------------------------------------------------------------- /Codechef/CPP/Div2_June_2020/problem_links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codechef/CPP/Div2_June_2020/problem_links.md -------------------------------------------------------------------------------- /Codechef/CPP/Div2_May_cookoff_2020/CHEFRECP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codechef/CPP/Div2_May_cookoff_2020/CHEFRECP.cpp -------------------------------------------------------------------------------- /Codechef/CPP/Div2_May_cookoff_2020/CHEFSHIP.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codechef/CPP/Div2_May_cookoff_2020/CHEFSHIP.CPP -------------------------------------------------------------------------------- /Codechef/CPP/Div2_May_cookoff_2020/CHEFSQUD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codechef/CPP/Div2_May_cookoff_2020/CHEFSQUD.cpp -------------------------------------------------------------------------------- /Codechef/CPP/Div2_May_cookoff_2020/CHFIMPRS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codechef/CPP/Div2_May_cookoff_2020/CHFIMPRS.cpp -------------------------------------------------------------------------------- /Codechef/CPP/Div2_May_cookoff_2020/CROADS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codechef/CPP/Div2_May_cookoff_2020/CROADS.cpp -------------------------------------------------------------------------------- /Codechef/CPP/Div2_May_cookoff_2020/problem_links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codechef/CPP/Div2_May_cookoff_2020/problem_links.md -------------------------------------------------------------------------------- /Codechef/CPP/Div2_May_lunchtime2020/CHEFZRON.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codechef/CPP/Div2_May_lunchtime2020/CHEFZRON.cpp -------------------------------------------------------------------------------- /Codechef/CPP/Div2_May_lunchtime2020/CONVSTR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codechef/CPP/Div2_May_lunchtime2020/CONVSTR.cpp -------------------------------------------------------------------------------- /Codechef/CPP/Div2_May_lunchtime2020/LOSTWKND.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codechef/CPP/Div2_May_lunchtime2020/LOSTWKND.cpp -------------------------------------------------------------------------------- /Codechef/CPP/Div2_May_lunchtime2020/TREDIFF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codechef/CPP/Div2_May_lunchtime2020/TREDIFF.cpp -------------------------------------------------------------------------------- /Codechef/CPP/Div2_May_lunchtime2020/WWALK.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codechef/CPP/Div2_May_lunchtime2020/WWALK.cpp -------------------------------------------------------------------------------- /Codechef/CPP/Div2_May_lunchtime2020/problem_links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codechef/CPP/Div2_May_lunchtime2020/problem_links.md -------------------------------------------------------------------------------- /Codechef/CPP/Div2_October_cookoff_2020/Decreasing_Srrnmieeda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codechef/CPP/Div2_October_cookoff_2020/Decreasing_Srrnmieeda.cpp -------------------------------------------------------------------------------- /Codechef/CPP/Div2_October_cookoff_2020/Path_etic_Sums.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codechef/CPP/Div2_October_cookoff_2020/Path_etic_Sums.cpp -------------------------------------------------------------------------------- /Codechef/CPP/Div2_October_cookoff_2020/Split_the_Str_Ing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codechef/CPP/Div2_October_cookoff_2020/Split_the_Str_Ing.cpp -------------------------------------------------------------------------------- /Codechef/CPP/Div2_October_cookoff_2020/Yet_Another_Crossover_Episode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codechef/CPP/Div2_October_cookoff_2020/Yet_Another_Crossover_Episode.cpp -------------------------------------------------------------------------------- /Codechef/CPP/Div2_September_2020/ADAMAT_September.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codechef/CPP/Div2_September_2020/ADAMAT_September.cpp -------------------------------------------------------------------------------- /Codechef/CPP/Div2_September_2020/CHFNSWAP_September.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codechef/CPP/Div2_September_2020/CHFNSWAP_September.cpp -------------------------------------------------------------------------------- /Codechef/CPP/Div2_September_2020/COVID19B_September.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codechef/CPP/Div2_September_2020/COVID19B_September.cpp -------------------------------------------------------------------------------- /Codechef/CPP/Div2_September_2020/CRDGAME2_September.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codechef/CPP/Div2_September_2020/CRDGAME2_September.cpp -------------------------------------------------------------------------------- /Codechef/CPP/Div2_September_2020/EQDIV_September.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codechef/CPP/Div2_September_2020/EQDIV_September.cpp -------------------------------------------------------------------------------- /Codechef/CPP/Div2_September_2020/FINXOR_September.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codechef/CPP/Div2_September_2020/FINXOR_September.cpp -------------------------------------------------------------------------------- /Codechef/CPP/Div2_September_2020/MOVCOIN2_September.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codechef/CPP/Div2_September_2020/MOVCOIN2_September.cpp -------------------------------------------------------------------------------- /Codechef/CPP/Div2_September_2020/ROTATPOL_September.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codechef/CPP/Div2_September_2020/ROTATPOL_September.cpp -------------------------------------------------------------------------------- /Codechef/CPP/Div2_September_2020/TREE2_September.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codechef/CPP/Div2_September_2020/TREE2_September.cpp -------------------------------------------------------------------------------- /Codechef/CPP/Div2_September_2020/VBR_September.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codechef/CPP/Div2_September_2020/VBR_September.cpp -------------------------------------------------------------------------------- /Codechef/CPP/Div2_September_2020/problem_links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codechef/CPP/Div2_September_2020/problem_links.md -------------------------------------------------------------------------------- /Codechef/CPP/Div2_September_cookoff_2020/BOWLERS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codechef/CPP/Div2_September_cookoff_2020/BOWLERS.cpp -------------------------------------------------------------------------------- /Codechef/CPP/Div2_September_cookoff_2020/BULBS.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codechef/CPP/Div2_September_cookoff_2020/BULBS.CPP -------------------------------------------------------------------------------- /Codechef/CPP/Div2_September_cookoff_2020/MININS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codechef/CPP/Div2_September_cookoff_2020/MININS.cpp -------------------------------------------------------------------------------- /Codechef/CPP/Div2_September_cookoff_2020/MVAL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codechef/CPP/Div2_September_cookoff_2020/MVAL.cpp -------------------------------------------------------------------------------- /Codechef/CPP/Div2_September_cookoff_2020/problem_links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codechef/CPP/Div2_September_cookoff_2020/problem_links.md -------------------------------------------------------------------------------- /Codeforces/CPP/653/E1ReadingBooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codeforces/CPP/653/E1ReadingBooks.cpp -------------------------------------------------------------------------------- /Codeforces/CPP/665 div_2/A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codeforces/CPP/665 div_2/A.cpp -------------------------------------------------------------------------------- /Codeforces/CPP/665 div_2/problem_links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codeforces/CPP/665 div_2/problem_links.md -------------------------------------------------------------------------------- /Codeforces/CPP/666 div_2/A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codeforces/CPP/666 div_2/A.cpp -------------------------------------------------------------------------------- /Codeforces/CPP/666 div_2/B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codeforces/CPP/666 div_2/B.cpp -------------------------------------------------------------------------------- /Codeforces/CPP/666 div_2/C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codeforces/CPP/666 div_2/C.cpp -------------------------------------------------------------------------------- /Codeforces/CPP/666 div_2/problem_links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codeforces/CPP/666 div_2/problem_links.md -------------------------------------------------------------------------------- /Codeforces/CPP/671 div_2/A_Digit_Game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codeforces/CPP/671 div_2/A_Digit_Game.cpp -------------------------------------------------------------------------------- /Codeforces/CPP/671 div_2/B_Stairs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codeforces/CPP/671 div_2/B_Stairs.cpp -------------------------------------------------------------------------------- /Codeforces/CPP/671 div_2/C_Killjoy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codeforces/CPP/671 div_2/C_Killjoy.cpp -------------------------------------------------------------------------------- /Codeforces/CPP/671 div_2/D1_Sage_s_Birthday_easy_version_.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codeforces/CPP/671 div_2/D1_Sage_s_Birthday_easy_version_.cpp -------------------------------------------------------------------------------- /Codeforces/CPP/671 div_2/D2_Sage_s_Birthday_hard_version_.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codeforces/CPP/671 div_2/D2_Sage_s_Birthday_hard_version_.cpp -------------------------------------------------------------------------------- /Codeforces/CPP/671 div_2/problem_links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codeforces/CPP/671 div_2/problem_links.md -------------------------------------------------------------------------------- /Codeforces/CPP/672 div_2/A_Cubes_Sorting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codeforces/CPP/672 div_2/A_Cubes_Sorting.cpp -------------------------------------------------------------------------------- /Codeforces/CPP/672 div_2/B_Rock_and_Lever.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codeforces/CPP/672 div_2/B_Rock_and_Lever.cpp -------------------------------------------------------------------------------- /Codeforces/CPP/672 div_2/C1_Pok_mon_Army_easy_version_.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codeforces/CPP/672 div_2/C1_Pok_mon_Army_easy_version_.cpp -------------------------------------------------------------------------------- /Codeforces/CPP/672 div_2/problem_links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codeforces/CPP/672 div_2/problem_links.md -------------------------------------------------------------------------------- /Codeforces/CPP/674 div_3/A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codeforces/CPP/674 div_3/A.cpp -------------------------------------------------------------------------------- /Codeforces/CPP/674 div_3/B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codeforces/CPP/674 div_3/B.cpp -------------------------------------------------------------------------------- /Codeforces/CPP/674 div_3/problem_links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codeforces/CPP/674 div_3/problem_links.md -------------------------------------------------------------------------------- /Codeforces/CPP/Codeforces Round #110 (Div. 2)/B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codeforces/CPP/Codeforces Round #110 (Div. 2)/B.cpp -------------------------------------------------------------------------------- /Codeforces/CPP/Codeforces Round #110 (Div. 2)/E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codeforces/CPP/Codeforces Round #110 (Div. 2)/E.cpp -------------------------------------------------------------------------------- /Codeforces/CPP/Codeforces Round #207 (Div. 1)/B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codeforces/CPP/Codeforces Round #207 (Div. 1)/B.cpp -------------------------------------------------------------------------------- /Codeforces/CPP/Codeforces_667_Div3/A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codeforces/CPP/Codeforces_667_Div3/A.cpp -------------------------------------------------------------------------------- /Codeforces/CPP/Codeforces_667_Div3/B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codeforces/CPP/Codeforces_667_Div3/B.cpp -------------------------------------------------------------------------------- /Codeforces/CPP/Contest_name/Watermelon.c++: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codeforces/CPP/Contest_name/Watermelon.c++ -------------------------------------------------------------------------------- /Codeforces/CPP/Educational Codeforces Round 23/A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codeforces/CPP/Educational Codeforces Round 23/A.cpp -------------------------------------------------------------------------------- /Codeforces/CPP/Educational Codeforces Round 23/B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codeforces/CPP/Educational Codeforces Round 23/B.cpp -------------------------------------------------------------------------------- /Codeforces/CPP/Educational Codeforces Round 23/E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codeforces/CPP/Educational Codeforces Round 23/E.cpp -------------------------------------------------------------------------------- /Codeforces/CPP/Round #667 DIv. 3/Yet Another Array Restoration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codeforces/CPP/Round #667 DIv. 3/Yet Another Array Restoration.cpp -------------------------------------------------------------------------------- /Codeforces/CPP/School Team Contest #2 (Winter Computer School 2010/E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codeforces/CPP/School Team Contest #2 (Winter Computer School 2010/E.cpp -------------------------------------------------------------------------------- /Codeforces/CPP/grankforce/A_Circle_Coloring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codeforces/CPP/grankforce/A_Circle_Coloring.cpp -------------------------------------------------------------------------------- /Codeforces/CPP/grankforce/B_Arrays_Sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codeforces/CPP/grankforce/B_Arrays_Sum.cpp -------------------------------------------------------------------------------- /Codeforces/CPP/grankforce/C_Discrete_Acceleration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codeforces/CPP/grankforce/C_Discrete_Acceleration.cpp -------------------------------------------------------------------------------- /Codeforces/CPP/grankforce/D_Searchlights.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codeforces/CPP/grankforce/D_Searchlights.cpp -------------------------------------------------------------------------------- /Codeforces/CPP/grankforce/problem_links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Codeforces/CPP/grankforce/problem_links.md -------------------------------------------------------------------------------- /ConvertBinaryNumbertoOctalAndVice-versa/C++/BinaryToOctalVice-versa.C++.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/ConvertBinaryNumbertoOctalAndVice-versa/C++/BinaryToOctalVice-versa.C++.cpp -------------------------------------------------------------------------------- /CountingDivisors/CPP/CountingDivisors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/CountingDivisors/CPP/CountingDivisors.cpp -------------------------------------------------------------------------------- /DFS/CPP/DFS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/DFS/CPP/DFS.cpp -------------------------------------------------------------------------------- /DSU on Trees/CPP/DSU on Trees.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/DSU on Trees/CPP/DSU on Trees.cpp -------------------------------------------------------------------------------- /DSU/DSU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/DSU/DSU.cpp -------------------------------------------------------------------------------- /Dijsktra's_algo/Algorithm/Dijsktra's_algo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Dijsktra's_algo/Algorithm/Dijsktra's_algo.md -------------------------------------------------------------------------------- /Dijsktra's_algo/Algorithm/images/dj1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Dijsktra's_algo/Algorithm/images/dj1.jpg -------------------------------------------------------------------------------- /Dijsktra's_algo/Algorithm/images/dj2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Dijsktra's_algo/Algorithm/images/dj2.jpg -------------------------------------------------------------------------------- /Dijsktra's_algo/Algorithm/images/dj3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Dijsktra's_algo/Algorithm/images/dj3.jpg -------------------------------------------------------------------------------- /Dijsktra's_algo/Algorithm/images/dj4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Dijsktra's_algo/Algorithm/images/dj4.jpg -------------------------------------------------------------------------------- /Dijsktra's_algo/Algorithm/images/dj5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Dijsktra's_algo/Algorithm/images/dj5.jpg -------------------------------------------------------------------------------- /Dijsktra's_algo/Algorithm/images/dj6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Dijsktra's_algo/Algorithm/images/dj6.jpg -------------------------------------------------------------------------------- /Dijsktra's_algo/CPP/dijsktra's_algo.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Dijsktra's_algo/CPP/dijsktra's_algo.CPP -------------------------------------------------------------------------------- /Dijsktra's_algo/java/dijsktra's_algo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Dijsktra's_algo/java/dijsktra's_algo.java -------------------------------------------------------------------------------- /Dijsktra's_algo/js/dijsktra's_algo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Dijsktra's_algo/js/dijsktra's_algo.js -------------------------------------------------------------------------------- /Dijsktra's_algo/python/dijsktra's_algo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Dijsktra's_algo/python/dijsktra's_algo.py -------------------------------------------------------------------------------- /DisjoinSetUnion/CPP/DSU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/DisjoinSetUnion/CPP/DSU.cpp -------------------------------------------------------------------------------- /DutchFlagProblem/CPP/DutchFlagProblem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/DutchFlagProblem/CPP/DutchFlagProblem.cpp -------------------------------------------------------------------------------- /Dynamic Programming/Equal_sum_partition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Dynamic Programming/Equal_sum_partition.cpp -------------------------------------------------------------------------------- /Dynamic Programming/Knapsack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Dynamic Programming/Knapsack.cpp -------------------------------------------------------------------------------- /Dynamic Programming/Subset Sum Problem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Dynamic Programming/Subset Sum Problem.cpp -------------------------------------------------------------------------------- /FibonacciNumbers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/FibonacciNumbers.c -------------------------------------------------------------------------------- /Fibonnaci_Number_using_Matrix_Exponentiation/C++/Fibonacci.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Fibonnaci_Number_using_Matrix_Exponentiation/C++/Fibonacci.cpp -------------------------------------------------------------------------------- /FindMissingNumber/CPP/FindMissingNumber.C++: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/FindMissingNumber/CPP/FindMissingNumber.C++ -------------------------------------------------------------------------------- /FrontEndWebsite/Animated (Landing)Home Page/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/FrontEndWebsite/Animated (Landing)Home Page/LICENSE -------------------------------------------------------------------------------- /FrontEndWebsite/Animated (Landing)Home Page/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/FrontEndWebsite/Animated (Landing)Home Page/README.md -------------------------------------------------------------------------------- /FrontEndWebsite/Animated (Landing)Home Page/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/FrontEndWebsite/Animated (Landing)Home Page/index.html -------------------------------------------------------------------------------- /FrontEndWebsite/Animated (Landing)Home Page/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/FrontEndWebsite/Animated (Landing)Home Page/main.css -------------------------------------------------------------------------------- /FrontEndWebsite/Card Website Project 1/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/FrontEndWebsite/Card Website Project 1/.DS_Store -------------------------------------------------------------------------------- /FrontEndWebsite/Card Website Project 1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/FrontEndWebsite/Card Website Project 1/README.md -------------------------------------------------------------------------------- /FrontEndWebsite/Card Website Project 1/assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/FrontEndWebsite/Card Website Project 1/assets/.DS_Store -------------------------------------------------------------------------------- /FrontEndWebsite/Card Website Project 1/assets/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/FrontEndWebsite/Card Website Project 1/assets/css/main.css -------------------------------------------------------------------------------- /FrontEndWebsite/Card Website Project 1/assets/icofont/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/FrontEndWebsite/Card Website Project 1/assets/icofont/.DS_Store -------------------------------------------------------------------------------- /FrontEndWebsite/Card Website Project 1/assets/icofont/fonts/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/FrontEndWebsite/Card Website Project 1/assets/icofont/fonts/.DS_Store -------------------------------------------------------------------------------- /FrontEndWebsite/Card Website Project 1/assets/icofont/fonts/icofont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/FrontEndWebsite/Card Website Project 1/assets/icofont/fonts/icofont.eot -------------------------------------------------------------------------------- /FrontEndWebsite/Card Website Project 1/assets/icofont/fonts/icofont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/FrontEndWebsite/Card Website Project 1/assets/icofont/fonts/icofont.svg -------------------------------------------------------------------------------- /FrontEndWebsite/Card Website Project 1/assets/icofont/fonts/icofont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/FrontEndWebsite/Card Website Project 1/assets/icofont/fonts/icofont.ttf -------------------------------------------------------------------------------- /FrontEndWebsite/Card Website Project 1/assets/icofont/fonts/icofont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/FrontEndWebsite/Card Website Project 1/assets/icofont/fonts/icofont.woff -------------------------------------------------------------------------------- /FrontEndWebsite/Card Website Project 1/assets/icofont/fonts/icofont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/FrontEndWebsite/Card Website Project 1/assets/icofont/fonts/icofont.woff2 -------------------------------------------------------------------------------- /FrontEndWebsite/Card Website Project 1/assets/icofont/icofont.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/FrontEndWebsite/Card Website Project 1/assets/icofont/icofont.min.css -------------------------------------------------------------------------------- /FrontEndWebsite/Card Website Project 1/img/felipe-marmol-wh7ftWYLMa8-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/FrontEndWebsite/Card Website Project 1/img/felipe-marmol-wh7ftWYLMa8-unsplash.jpg -------------------------------------------------------------------------------- /FrontEndWebsite/Card Website Project 1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/FrontEndWebsite/Card Website Project 1/index.html -------------------------------------------------------------------------------- /FrontEndWebsite/Card Website Project 2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/FrontEndWebsite/Card Website Project 2/README.md -------------------------------------------------------------------------------- /FrontEndWebsite/Card Website Project 2/assets/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/FrontEndWebsite/Card Website Project 2/assets/css/main.css -------------------------------------------------------------------------------- /FrontEndWebsite/Card Website Project 2/assets/icofont/fonts/icofont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/FrontEndWebsite/Card Website Project 2/assets/icofont/fonts/icofont.eot -------------------------------------------------------------------------------- /FrontEndWebsite/Card Website Project 2/assets/icofont/fonts/icofont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/FrontEndWebsite/Card Website Project 2/assets/icofont/fonts/icofont.svg -------------------------------------------------------------------------------- /FrontEndWebsite/Card Website Project 2/assets/icofont/fonts/icofont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/FrontEndWebsite/Card Website Project 2/assets/icofont/fonts/icofont.ttf -------------------------------------------------------------------------------- /FrontEndWebsite/Card Website Project 2/assets/icofont/fonts/icofont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/FrontEndWebsite/Card Website Project 2/assets/icofont/fonts/icofont.woff -------------------------------------------------------------------------------- /FrontEndWebsite/Card Website Project 2/assets/icofont/fonts/icofont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/FrontEndWebsite/Card Website Project 2/assets/icofont/fonts/icofont.woff2 -------------------------------------------------------------------------------- /FrontEndWebsite/Card Website Project 2/assets/icofont/icofont.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/FrontEndWebsite/Card Website Project 2/assets/icofont/icofont.min.css -------------------------------------------------------------------------------- /FrontEndWebsite/Card Website Project 2/img/chester-wade-msnyz9L6gs4-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/FrontEndWebsite/Card Website Project 2/img/chester-wade-msnyz9L6gs4-unsplash.jpg -------------------------------------------------------------------------------- /FrontEndWebsite/Card Website Project 2/img/felipe-marmol-wh7ftWYLMa8-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/FrontEndWebsite/Card Website Project 2/img/felipe-marmol-wh7ftWYLMa8-unsplash.jpg -------------------------------------------------------------------------------- /FrontEndWebsite/Card Website Project 2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/FrontEndWebsite/Card Website Project 2/index.html -------------------------------------------------------------------------------- /FrontEndWebsite/Card Website Project 3/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/FrontEndWebsite/Card Website Project 3/.DS_Store -------------------------------------------------------------------------------- /FrontEndWebsite/Card Website Project 3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/FrontEndWebsite/Card Website Project 3/README.md -------------------------------------------------------------------------------- /FrontEndWebsite/Card Website Project 3/assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/FrontEndWebsite/Card Website Project 3/assets/.DS_Store -------------------------------------------------------------------------------- /FrontEndWebsite/Card Website Project 3/assets/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/FrontEndWebsite/Card Website Project 3/assets/css/main.css -------------------------------------------------------------------------------- /FrontEndWebsite/Card Website Project 3/assets/icofont/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/FrontEndWebsite/Card Website Project 3/assets/icofont/.DS_Store -------------------------------------------------------------------------------- /FrontEndWebsite/Card Website Project 3/assets/icofont/fonts/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/FrontEndWebsite/Card Website Project 3/assets/icofont/fonts/.DS_Store -------------------------------------------------------------------------------- /FrontEndWebsite/Card Website Project 3/assets/icofont/fonts/icofont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/FrontEndWebsite/Card Website Project 3/assets/icofont/fonts/icofont.eot -------------------------------------------------------------------------------- /FrontEndWebsite/Card Website Project 3/assets/icofont/fonts/icofont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/FrontEndWebsite/Card Website Project 3/assets/icofont/fonts/icofont.svg -------------------------------------------------------------------------------- /FrontEndWebsite/Card Website Project 3/assets/icofont/fonts/icofont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/FrontEndWebsite/Card Website Project 3/assets/icofont/fonts/icofont.ttf -------------------------------------------------------------------------------- /FrontEndWebsite/Card Website Project 3/assets/icofont/fonts/icofont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/FrontEndWebsite/Card Website Project 3/assets/icofont/fonts/icofont.woff -------------------------------------------------------------------------------- /FrontEndWebsite/Card Website Project 3/assets/icofont/fonts/icofont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/FrontEndWebsite/Card Website Project 3/assets/icofont/fonts/icofont.woff2 -------------------------------------------------------------------------------- /FrontEndWebsite/Card Website Project 3/assets/icofont/icofont.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/FrontEndWebsite/Card Website Project 3/assets/icofont/icofont.min.css -------------------------------------------------------------------------------- /FrontEndWebsite/Card Website Project 3/img/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/FrontEndWebsite/Card Website Project 3/img/.DS_Store -------------------------------------------------------------------------------- /FrontEndWebsite/Card Website Project 3/img/chester-wade-msnyz9L6gs4-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/FrontEndWebsite/Card Website Project 3/img/chester-wade-msnyz9L6gs4-unsplash.jpg -------------------------------------------------------------------------------- /FrontEndWebsite/Card Website Project 3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/FrontEndWebsite/Card Website Project 3/index.html -------------------------------------------------------------------------------- /FrontEndWebsite/Tap Music/README.md: -------------------------------------------------------------------------------- 1 | 2 | ### Link to my Website:- 3 | https://tapmusic-ash.netlify.app/ -------------------------------------------------------------------------------- /FrontEndWebsite/Tap Music/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/FrontEndWebsite/Tap Music/app.js -------------------------------------------------------------------------------- /FrontEndWebsite/Tap Music/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/FrontEndWebsite/Tap Music/index.html -------------------------------------------------------------------------------- /FrontEndWebsite/Tap Music/sounds/bubbles.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/FrontEndWebsite/Tap Music/sounds/bubbles.mp3 -------------------------------------------------------------------------------- /FrontEndWebsite/Tap Music/sounds/clay.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/FrontEndWebsite/Tap Music/sounds/clay.mp3 -------------------------------------------------------------------------------- /FrontEndWebsite/Tap Music/sounds/confetti.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/FrontEndWebsite/Tap Music/sounds/confetti.mp3 -------------------------------------------------------------------------------- /FrontEndWebsite/Tap Music/sounds/glimmer.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/FrontEndWebsite/Tap Music/sounds/glimmer.mp3 -------------------------------------------------------------------------------- /FrontEndWebsite/Tap Music/sounds/moon.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/FrontEndWebsite/Tap Music/sounds/moon.mp3 -------------------------------------------------------------------------------- /FrontEndWebsite/Tap Music/sounds/ufo.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/FrontEndWebsite/Tap Music/sounds/ufo.mp3 -------------------------------------------------------------------------------- /FrontEndWebsite/Tap Music/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/FrontEndWebsite/Tap Music/style.css -------------------------------------------------------------------------------- /FrontEndWebsite/TeamMemberWebsite/FrontEndWebsite/Drum_Kit/Bass-Drum.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/FrontEndWebsite/TeamMemberWebsite/FrontEndWebsite/Drum_Kit/Bass-Drum.mp3 -------------------------------------------------------------------------------- /FrontEndWebsite/TeamMemberWebsite/FrontEndWebsite/Drum_Kit/crash.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/FrontEndWebsite/TeamMemberWebsite/FrontEndWebsite/Drum_Kit/crash.mp3 -------------------------------------------------------------------------------- /FrontEndWebsite/TeamMemberWebsite/FrontEndWebsite/Drum_Kit/crash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/FrontEndWebsite/TeamMemberWebsite/FrontEndWebsite/Drum_Kit/crash.png -------------------------------------------------------------------------------- /FrontEndWebsite/TeamMemberWebsite/FrontEndWebsite/Drum_Kit/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/FrontEndWebsite/TeamMemberWebsite/FrontEndWebsite/Drum_Kit/index.html -------------------------------------------------------------------------------- /FrontEndWebsite/TeamMemberWebsite/FrontEndWebsite/Drum_Kit/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/FrontEndWebsite/TeamMemberWebsite/FrontEndWebsite/Drum_Kit/index.js -------------------------------------------------------------------------------- /FrontEndWebsite/TeamMemberWebsite/FrontEndWebsite/Drum_Kit/kick-bass.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/FrontEndWebsite/TeamMemberWebsite/FrontEndWebsite/Drum_Kit/kick-bass.mp3 -------------------------------------------------------------------------------- /FrontEndWebsite/TeamMemberWebsite/FrontEndWebsite/Drum_Kit/kick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/FrontEndWebsite/TeamMemberWebsite/FrontEndWebsite/Drum_Kit/kick.png -------------------------------------------------------------------------------- /FrontEndWebsite/TeamMemberWebsite/FrontEndWebsite/Drum_Kit/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/FrontEndWebsite/TeamMemberWebsite/FrontEndWebsite/Drum_Kit/readme.md -------------------------------------------------------------------------------- /FrontEndWebsite/TeamMemberWebsite/FrontEndWebsite/Drum_Kit/snare.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/FrontEndWebsite/TeamMemberWebsite/FrontEndWebsite/Drum_Kit/snare.mp3 -------------------------------------------------------------------------------- /FrontEndWebsite/TeamMemberWebsite/FrontEndWebsite/Drum_Kit/snare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/FrontEndWebsite/TeamMemberWebsite/FrontEndWebsite/Drum_Kit/snare.png -------------------------------------------------------------------------------- /FrontEndWebsite/TeamMemberWebsite/FrontEndWebsite/Drum_Kit/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/FrontEndWebsite/TeamMemberWebsite/FrontEndWebsite/Drum_Kit/styles.css -------------------------------------------------------------------------------- /FrontEndWebsite/TeamMemberWebsite/FrontEndWebsite/Drum_Kit/tom-1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/FrontEndWebsite/TeamMemberWebsite/FrontEndWebsite/Drum_Kit/tom-1.mp3 -------------------------------------------------------------------------------- /FrontEndWebsite/TeamMemberWebsite/FrontEndWebsite/Drum_Kit/tom-2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/FrontEndWebsite/TeamMemberWebsite/FrontEndWebsite/Drum_Kit/tom-2.mp3 -------------------------------------------------------------------------------- /FrontEndWebsite/TeamMemberWebsite/FrontEndWebsite/Drum_Kit/tom-3.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/FrontEndWebsite/TeamMemberWebsite/FrontEndWebsite/Drum_Kit/tom-3.mp3 -------------------------------------------------------------------------------- /FrontEndWebsite/TeamMemberWebsite/FrontEndWebsite/Drum_Kit/tom-4.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/FrontEndWebsite/TeamMemberWebsite/FrontEndWebsite/Drum_Kit/tom-4.mp3 -------------------------------------------------------------------------------- /FrontEndWebsite/TeamMemberWebsite/FrontEndWebsite/Drum_Kit/tom1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/FrontEndWebsite/TeamMemberWebsite/FrontEndWebsite/Drum_Kit/tom1.png -------------------------------------------------------------------------------- /FrontEndWebsite/TeamMemberWebsite/FrontEndWebsite/Drum_Kit/tom2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/FrontEndWebsite/TeamMemberWebsite/FrontEndWebsite/Drum_Kit/tom2.png -------------------------------------------------------------------------------- /FrontEndWebsite/TeamMemberWebsite/FrontEndWebsite/Drum_Kit/tom3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/FrontEndWebsite/TeamMemberWebsite/FrontEndWebsite/Drum_Kit/tom3.png -------------------------------------------------------------------------------- /FrontEndWebsite/TeamMemberWebsite/FrontEndWebsite/Drum_Kit/tom4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/FrontEndWebsite/TeamMemberWebsite/FrontEndWebsite/Drum_Kit/tom4.png -------------------------------------------------------------------------------- /FrontEndWebsite/TeamMemberWebsite/team/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/FrontEndWebsite/TeamMemberWebsite/team/.vscode/settings.json -------------------------------------------------------------------------------- /FrontEndWebsite/TeamMemberWebsite/team/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/FrontEndWebsite/TeamMemberWebsite/team/3.jpg -------------------------------------------------------------------------------- /FrontEndWebsite/TeamMemberWebsite/team/Imortant Note.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/FrontEndWebsite/TeamMemberWebsite/team/Imortant Note.txt -------------------------------------------------------------------------------- /FrontEndWebsite/TeamMemberWebsite/team/README.md: -------------------------------------------------------------------------------- 1 | 2 | ### Link to my Website:- 3 | https://zahinekbal.github.io/Team-Section/ -------------------------------------------------------------------------------- /FrontEndWebsite/TeamMemberWebsite/team/images.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/FrontEndWebsite/TeamMemberWebsite/team/images.jpg -------------------------------------------------------------------------------- /FrontEndWebsite/TeamMemberWebsite/team/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/FrontEndWebsite/TeamMemberWebsite/team/index.html -------------------------------------------------------------------------------- /FrontEndWebsite/TeamMemberWebsite/team/team-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/FrontEndWebsite/TeamMemberWebsite/team/team-3.jpg -------------------------------------------------------------------------------- /FrontEndWebsite/TeamMemberWebsite/team/team-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/FrontEndWebsite/TeamMemberWebsite/team/team-4.jpg -------------------------------------------------------------------------------- /FrontEndWebsite/TeamMemberWebsite/team/team-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/FrontEndWebsite/TeamMemberWebsite/team/team-5.jpg -------------------------------------------------------------------------------- /FrontEndWebsite/TeamMemberWebsite/team/team-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/FrontEndWebsite/TeamMemberWebsite/team/team-6.jpg -------------------------------------------------------------------------------- /GoGradeProgram/grade.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/GoGradeProgram/grade.go -------------------------------------------------------------------------------- /Graph Problem/CPP/AllTestCases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Graph Problem/CPP/AllTestCases.md -------------------------------------------------------------------------------- /Graph Problem/CPP/Constraints.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Graph Problem/CPP/Constraints.md -------------------------------------------------------------------------------- /Graph Problem/CPP/Kahn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Graph Problem/CPP/Kahn.cpp -------------------------------------------------------------------------------- /Graph Problem/CPP/Qus(Religious People).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Graph Problem/CPP/Qus(Religious People).md -------------------------------------------------------------------------------- /Graph Problem/CPP/code.c++: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Graph Problem/CPP/code.c++ -------------------------------------------------------------------------------- /Graph Problem/CPP/explanation&Hint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Graph Problem/CPP/explanation&Hint.md -------------------------------------------------------------------------------- /Graph Problem/CPP/sample input&output.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Graph Problem/CPP/sample input&output.md -------------------------------------------------------------------------------- /Graph-Algo-Using-C/01.Graph_using_adjacency_matrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Graph-Algo-Using-C/01.Graph_using_adjacency_matrix.c -------------------------------------------------------------------------------- /Graph-Algo-Using-C/02.Graph_using_adjacency_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Graph-Algo-Using-C/02.Graph_using_adjacency_list.c -------------------------------------------------------------------------------- /Graph-Algo-Using-C/03.Graph_DFS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Graph-Algo-Using-C/03.Graph_DFS.c -------------------------------------------------------------------------------- /Graph-Algo-Using-C/04.Graph_BFS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Graph-Algo-Using-C/04.Graph_BFS.c -------------------------------------------------------------------------------- /Graph-Algo-Using-C/05.Kruskal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Graph-Algo-Using-C/05.Kruskal.c -------------------------------------------------------------------------------- /Graph-Algo-Using-C/06.prims.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Graph-Algo-Using-C/06.prims.c -------------------------------------------------------------------------------- /Graph-Algo-Using-C/Readme.md: -------------------------------------------------------------------------------- 1 | ## Graph Algorithms Using C 2 | -------------------------------------------------------------------------------- /Graphs/C++/KosarajusAlgorithm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Graphs/C++/KosarajusAlgorithm.cpp -------------------------------------------------------------------------------- /GuessNumberGame/guess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/GuessNumberGame/guess.c -------------------------------------------------------------------------------- /Hangman game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Hangman game.py -------------------------------------------------------------------------------- /HouseRobber/CPP/HouseRobber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/HouseRobber/CPP/HouseRobber.cpp -------------------------------------------------------------------------------- /Imakshat47_binary2DecimalBasic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Imakshat47_binary2DecimalBasic.cpp -------------------------------------------------------------------------------- /Imakshat47_binary2DecimalUsingInBuildFun.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Imakshat47_binary2DecimalUsingInBuildFun.cpp -------------------------------------------------------------------------------- /Imakshat47_binary2DecimalUsingString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Imakshat47_binary2DecimalUsingString.cpp -------------------------------------------------------------------------------- /Imakshat47_binary2Octal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Imakshat47_binary2Octal.cpp -------------------------------------------------------------------------------- /Imakshat47_decimal2OctalBasic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Imakshat47_decimal2OctalBasic.cpp -------------------------------------------------------------------------------- /Imakshat47_decimal2OctalFormula.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Imakshat47_decimal2OctalFormula.cpp -------------------------------------------------------------------------------- /Imakshat47_decimal2binaryBasicArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Imakshat47_decimal2binaryBasicArray.cpp -------------------------------------------------------------------------------- /Imakshat47_decimal2binaryBasicVoid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Imakshat47_decimal2binaryBasicVoid.cpp -------------------------------------------------------------------------------- /Imakshat47_decimal2binaryUsingBitwise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Imakshat47_decimal2binaryUsingBitwise.cpp -------------------------------------------------------------------------------- /Imakshat47_octal2binary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Imakshat47_octal2binary.cpp -------------------------------------------------------------------------------- /ImplementStrstr/CPP/ImplementFunctionStrstr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/ImplementStrstr/CPP/ImplementFunctionStrstr.cpp -------------------------------------------------------------------------------- /Interviewbit/StackQueue/balanced_parantheses.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Interviewbit/StackQueue/balanced_parantheses.cpp -------------------------------------------------------------------------------- /Interviewbit/StackQueue/first_non_repeating_character.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Interviewbit/StackQueue/first_non_repeating_character.cpp -------------------------------------------------------------------------------- /Interviewbit/StackQueue/redundant_braces.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Interviewbit/StackQueue/redundant_braces.cpp -------------------------------------------------------------------------------- /InvertionCount/CPP/InvertionCount.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/InvertionCount/CPP/InvertionCount.cpp -------------------------------------------------------------------------------- /Job Sequencing/sequencing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Job Sequencing/sequencing.cpp -------------------------------------------------------------------------------- /KMP/CPP/KMP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/KMP/CPP/KMP.cpp -------------------------------------------------------------------------------- /Kadane'sAlgorithm/CPP/Kadane'sAlgo.C++: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Kadane'sAlgorithm/CPP/Kadane'sAlgo.C++ -------------------------------------------------------------------------------- /Kadane'sAlgorithm/Python/Kadane'sAlgorithm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Kadane'sAlgorithm/Python/Kadane'sAlgorithm.py -------------------------------------------------------------------------------- /Krishnamurthy Number/Krishnamurthy_number.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Krishnamurthy Number/Krishnamurthy_number.cpp -------------------------------------------------------------------------------- /Krishnamurthy Number/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Krishnamurthy Number/readme.md -------------------------------------------------------------------------------- /Kruskal's_Algorithm/CPP/kruskal_algorithm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Kruskal's_Algorithm/CPP/kruskal_algorithm.cpp -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/LICENSE -------------------------------------------------------------------------------- /Lcs/CPP/longestCommonSubsequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Lcs/CPP/longestCommonSubsequence.cpp -------------------------------------------------------------------------------- /Mad libs game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Mad libs game.py -------------------------------------------------------------------------------- /PatternProblems/HollowDiamondInscribedInRectanglePattern/C++/HollowDiamondInscribedInRectanglePattern.C++: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/PatternProblems/HollowDiamondInscribedInRectanglePattern/C++/HollowDiamondInscribedInRectanglePattern.C++ -------------------------------------------------------------------------------- /PatternProblems/HollowDiamondInscribedInRectanglePattern/C/HollowDiamondInscribedInRectanglePattern.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/PatternProblems/HollowDiamondInscribedInRectanglePattern/C/HollowDiamondInscribedInRectanglePattern.C -------------------------------------------------------------------------------- /PatternProblems/HollowDiamondInscribedInRectanglePattern/Java/HollowDiamondInscribedInRectanglePattern.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/PatternProblems/HollowDiamondInscribedInRectanglePattern/Java/HollowDiamondInscribedInRectanglePattern.java -------------------------------------------------------------------------------- /PatternProblems/PyramidPatternProblem/C++/PyramidPatternProblem1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/PatternProblems/PyramidPatternProblem/C++/PyramidPatternProblem1.cpp -------------------------------------------------------------------------------- /PatternProblems/PyramidPatternProblem/C/pyramidpattern1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/PatternProblems/PyramidPatternProblem/C/pyramidpattern1.c -------------------------------------------------------------------------------- /PatternProblems/PyramidPatternProblem/JAVA/PyramidPattern1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/PatternProblems/PyramidPatternProblem/JAVA/PyramidPattern1.java -------------------------------------------------------------------------------- /PatternProblems/PyramidPatternProblem/PYTHON/pyramidpattern1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/PatternProblems/PyramidPatternProblem/PYTHON/pyramidpattern1.py -------------------------------------------------------------------------------- /Programmer's day special wish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Programmer's day special wish.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/README.md -------------------------------------------------------------------------------- /Recursion/Flood_fill_algorithm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Recursion/Flood_fill_algorithm.cpp -------------------------------------------------------------------------------- /RotateTheArray/C++/Rotate_The_Array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/RotateTheArray/C++/Rotate_The_Array.cpp -------------------------------------------------------------------------------- /RotateTheArray/C/RotateArrayByN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/RotateTheArray/C/RotateArrayByN.c -------------------------------------------------------------------------------- /RotateTheArray/Java/RotateArrayGCD.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/RotateTheArray/Java/RotateArrayGCD.java -------------------------------------------------------------------------------- /RotateTheArray/Java/RotateTheArray.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/RotateTheArray/Java/RotateTheArray.java -------------------------------------------------------------------------------- /RotateTheArray/Python/ArrayRotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/RotateTheArray/Python/ArrayRotation.py -------------------------------------------------------------------------------- /RotateTheArray/Swift/RotateTheArray.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/RotateTheArray/Swift/RotateTheArray.swift -------------------------------------------------------------------------------- /RotateTheArray/different_array_rotations/common_sub_seq_array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/RotateTheArray/different_array_rotations/common_sub_seq_array.cpp -------------------------------------------------------------------------------- /RotateTheArray/different_array_rotations/left_rotation_array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/RotateTheArray/different_array_rotations/left_rotation_array.cpp -------------------------------------------------------------------------------- /RotateTheArray/different_array_rotations/rotate_2d_array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/RotateTheArray/different_array_rotations/rotate_2d_array.cpp -------------------------------------------------------------------------------- /RotateTheArray/different_array_rotations/rotate_array_by_someval.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/RotateTheArray/different_array_rotations/rotate_array_by_someval.cpp -------------------------------------------------------------------------------- /RotateTheArray/different_array_rotations/spiral_array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/RotateTheArray/different_array_rotations/spiral_array.cpp -------------------------------------------------------------------------------- /RotateTheArray/different_array_rotations/two_array_r_equal_not.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/RotateTheArray/different_array_rotations/two_array_r_equal_not.cpp -------------------------------------------------------------------------------- /RottenOranges/C++/RottenOranges.C++: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/RottenOranges/C++/RottenOranges.C++ -------------------------------------------------------------------------------- /STL-unordered_map/Problem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/STL-unordered_map/Problem.md -------------------------------------------------------------------------------- /STL-unordered_map/freq_count.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/STL-unordered_map/freq_count.cpp -------------------------------------------------------------------------------- /STL/CPP/insert-sorted-ll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/STL/CPP/insert-sorted-ll.cpp -------------------------------------------------------------------------------- /STL/CPP/minimum_cost_of_ropes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/STL/CPP/minimum_cost_of_ropes.cpp -------------------------------------------------------------------------------- /STL/CPP/partition in C++ STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/STL/CPP/partition in C++ STL -------------------------------------------------------------------------------- /STL/CPP/returnDistanceToTheNearestVowel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/STL/CPP/returnDistanceToTheNearestVowel.cpp -------------------------------------------------------------------------------- /STL/CPP/reverse-ll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/STL/CPP/reverse-ll.cpp -------------------------------------------------------------------------------- /STL/CPP/subarray_sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/STL/CPP/subarray_sum.cpp -------------------------------------------------------------------------------- /STL/CPP/triplet_sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/STL/CPP/triplet_sum.cpp -------------------------------------------------------------------------------- /STL/CPP/valid_parentheses.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/STL/CPP/valid_parentheses.cpp -------------------------------------------------------------------------------- /SegmentTree/CPP/SegmentTree.C++: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/SegmentTree/CPP/SegmentTree.C++ -------------------------------------------------------------------------------- /SortingAlgorithms/C++/BucketSort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/SortingAlgorithms/C++/BucketSort.cpp -------------------------------------------------------------------------------- /SortingAlgorithms/C++/CountingSort.C++: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/SortingAlgorithms/C++/CountingSort.C++ -------------------------------------------------------------------------------- /SortingAlgorithms/C++/InsertionSort.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/SortingAlgorithms/C++/InsertionSort.CPP -------------------------------------------------------------------------------- /SortingAlgorithms/C++/SelectionSort.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/SortingAlgorithms/C++/SelectionSort.CPP -------------------------------------------------------------------------------- /SortingAlgorithms/C++/paritoshkray_MergeSort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/SortingAlgorithms/C++/paritoshkray_MergeSort.cpp -------------------------------------------------------------------------------- /SortingAlgorithms/C++/zahinekbal_bubbleSort_STL(Comparater-Function).C++: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/SortingAlgorithms/C++/zahinekbal_bubbleSort_STL(Comparater-Function).C++ -------------------------------------------------------------------------------- /SortingAlgorithms/C/Bubble_Sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/SortingAlgorithms/C/Bubble_Sort.c -------------------------------------------------------------------------------- /SortingAlgorithms/C/HeapSort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/SortingAlgorithms/C/HeapSort.c -------------------------------------------------------------------------------- /SortingAlgorithms/C/InsertionSort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/SortingAlgorithms/C/InsertionSort.c -------------------------------------------------------------------------------- /SortingAlgorithms/C/Merge_Sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/SortingAlgorithms/C/Merge_Sort.c -------------------------------------------------------------------------------- /SortingAlgorithms/C/Selection_Sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/SortingAlgorithms/C/Selection_Sort.c -------------------------------------------------------------------------------- /SortingAlgorithms/Kotlin/BubbleSort.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/SortingAlgorithms/Kotlin/BubbleSort.kt -------------------------------------------------------------------------------- /SortingAlgorithms/java/BubbleSort.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/SortingAlgorithms/java/BubbleSort.java -------------------------------------------------------------------------------- /SortingAlgorithms/java/HeapSort.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/SortingAlgorithms/java/HeapSort.java -------------------------------------------------------------------------------- /SortingAlgorithms/java/InsertionSort.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/SortingAlgorithms/java/InsertionSort.java -------------------------------------------------------------------------------- /SortingAlgorithms/java/QuickSort.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/SortingAlgorithms/java/QuickSort.java -------------------------------------------------------------------------------- /SortingAlgorithms/java/SelectionSort.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/SortingAlgorithms/java/SelectionSort.java -------------------------------------------------------------------------------- /SortingAlgorithms/python/MergeSort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/SortingAlgorithms/python/MergeSort.py -------------------------------------------------------------------------------- /SortingAlgorithms/python/SelectionSort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/SortingAlgorithms/python/SelectionSort.py -------------------------------------------------------------------------------- /SortingAlgorithms/python/ShellSort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/SortingAlgorithms/python/ShellSort.py -------------------------------------------------------------------------------- /SortingAlgorithms/python/bubbleSort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/SortingAlgorithms/python/bubbleSort.py -------------------------------------------------------------------------------- /SortingAlgorithms/python/insertion sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/SortingAlgorithms/python/insertion sort.py -------------------------------------------------------------------------------- /SortingAlgorithms/python/optimiesd bubble sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/SortingAlgorithms/python/optimiesd bubble sort.py -------------------------------------------------------------------------------- /SpiralPrintArray/CPP/ArraySpiralPrint(Clockwise).c++: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/SpiralPrintArray/CPP/ArraySpiralPrint(Clockwise).c++ -------------------------------------------------------------------------------- /StairCaseProblem/C++/stair.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/StairCaseProblem/C++/stair.cpp -------------------------------------------------------------------------------- /StandardDeviation/StandardDeviation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/StandardDeviation/StandardDeviation.cpp -------------------------------------------------------------------------------- /SubsetSum/CPP/SubsetSum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/SubsetSum/CPP/SubsetSum.cpp -------------------------------------------------------------------------------- /SumOf_n^2/C++/SumOf_n^2.C++: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/SumOf_n^2/C++/SumOf_n^2.C++ -------------------------------------------------------------------------------- /SumOfcubes/C++/SumOfcubes.C++: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/SumOfcubes/C++/SumOfcubes.C++ -------------------------------------------------------------------------------- /SwappingOfNumbers/C++/CyclicOrderUsingCallByReference.C++: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/SwappingOfNumbers/C++/CyclicOrderUsingCallByReference.C++ -------------------------------------------------------------------------------- /TowerOfHanoi/hanoi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/TowerOfHanoi/hanoi.py -------------------------------------------------------------------------------- /TowerOfHanoi/tower_of_hanoi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/TowerOfHanoi/tower_of_hanoi.cpp -------------------------------------------------------------------------------- /Vector(STL)/Question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Vector(STL)/Question.md -------------------------------------------------------------------------------- /Vector(STL)/VectorSort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Vector(STL)/VectorSort.cpp -------------------------------------------------------------------------------- /Z-Algorithm/CPP/Z Algorithm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/Z-Algorithm/CPP/Z Algorithm.cpp -------------------------------------------------------------------------------- /assembly.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/assembly.s -------------------------------------------------------------------------------- /binary2DecimalBasic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/binary2DecimalBasic.c -------------------------------------------------------------------------------- /codeforces/CPP/656/Three-Pairwise-Maximums.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/codeforces/CPP/656/Three-Pairwise-Maximums.cpp -------------------------------------------------------------------------------- /codeforces/CPP/656/ThreePairwiseMaximums.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/codeforces/CPP/656/ThreePairwiseMaximums.cpp -------------------------------------------------------------------------------- /decimal2OctalBasic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/decimal2OctalBasic.c -------------------------------------------------------------------------------- /decimal2binaryBasicVoid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/decimal2binaryBasicVoid.c -------------------------------------------------------------------------------- /decimal2binaryUsingBitwise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/decimal2binaryUsingBitwise.c -------------------------------------------------------------------------------- /docker/flask/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/docker/flask/Dockerfile -------------------------------------------------------------------------------- /docker/flask/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/docker/flask/app.py -------------------------------------------------------------------------------- /docker/flask/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/docker/flask/docker-compose.yml -------------------------------------------------------------------------------- /docker/flask/requirements.txt: -------------------------------------------------------------------------------- 1 | flask 2 | redis -------------------------------------------------------------------------------- /hackerrank/Aray/2D_array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/hackerrank/Aray/2D_array.cpp -------------------------------------------------------------------------------- /hackerrank/FibonacciNumber.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/hackerrank/FibonacciNumber.java -------------------------------------------------------------------------------- /hackerrank/FibonacciNumbers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/hackerrank/FibonacciNumbers.cpp -------------------------------------------------------------------------------- /hackerrank/FlippingBits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/hackerrank/FlippingBits.cpp -------------------------------------------------------------------------------- /hackerrank/FlippingBits.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/hackerrank/FlippingBits.java -------------------------------------------------------------------------------- /hackerrank/Primality.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/hackerrank/Primality.cpp -------------------------------------------------------------------------------- /hackerrank/Primality.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/hackerrank/Primality.java -------------------------------------------------------------------------------- /hackerrank/maps/imakshat47_mapsQuery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/hackerrank/maps/imakshat47_mapsQuery.cpp -------------------------------------------------------------------------------- /hackerrank/sets/imakshat47_stlSets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/hackerrank/sets/imakshat47_stlSets.cpp -------------------------------------------------------------------------------- /hackerrank/sort/imakshat47_complexSorting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/hackerrank/sort/imakshat47_complexSorting.cpp -------------------------------------------------------------------------------- /hackerrank/sort/imakshat47_maxElement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/hackerrank/sort/imakshat47_maxElement.cpp -------------------------------------------------------------------------------- /hackerrank/vector/imakshat47_vectorDynamicErase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/hackerrank/vector/imakshat47_vectorDynamicErase.cpp -------------------------------------------------------------------------------- /hackerrank/vector/imakshat47_vectorLowerBound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/hackerrank/vector/imakshat47_vectorLowerBound.cpp -------------------------------------------------------------------------------- /hackerrank/vector/imakshat47_vectorSort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/hackerrank/vector/imakshat47_vectorSort.cpp -------------------------------------------------------------------------------- /img/Anjali.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/img/Anjali.jpeg -------------------------------------------------------------------------------- /img/AswinCG2002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/img/AswinCG2002.jpg -------------------------------------------------------------------------------- /img/Cuncis.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/img/Cuncis.jpeg -------------------------------------------------------------------------------- /img/DeepamPriyadarshi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/img/DeepamPriyadarshi.jpg -------------------------------------------------------------------------------- /img/Ishika.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/img/Ishika.jpg -------------------------------------------------------------------------------- /img/Jay_Shukla.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/img/Jay_Shukla.jpg -------------------------------------------------------------------------------- /img/Kunal888.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/img/Kunal888.jpg -------------------------------------------------------------------------------- /img/NishantBhatia.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/img/NishantBhatia.jpeg -------------------------------------------------------------------------------- /img/Vishi13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/img/Vishi13.jpg -------------------------------------------------------------------------------- /img/ashfaqahmed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/img/ashfaqahmed.jpg -------------------------------------------------------------------------------- /img/cedric-img-portrait-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/img/cedric-img-portrait-2.png -------------------------------------------------------------------------------- /img/rahul.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/img/rahul.jpeg -------------------------------------------------------------------------------- /img/rajarshi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/img/rajarshi.jpg -------------------------------------------------------------------------------- /img/sai_pranay.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/img/sai_pranay.jpg -------------------------------------------------------------------------------- /img/zahinekbal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/img/zahinekbal.jpg -------------------------------------------------------------------------------- /isUnique/isUnique.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/isUnique/isUnique.cpp -------------------------------------------------------------------------------- /modular-exponentiation/modular-exponentiation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/modular-exponentiation/modular-exponentiation.cpp -------------------------------------------------------------------------------- /octal2binary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/octal2binary.c -------------------------------------------------------------------------------- /python/Bunny_Prisoners_plates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/python/Bunny_Prisoners_plates.py -------------------------------------------------------------------------------- /python/Checking-Prime-Number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/python/Checking-Prime-Number.py -------------------------------------------------------------------------------- /python/Factorial-of-a-number-in-Python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/python/Factorial-of-a-number-in-Python.py -------------------------------------------------------------------------------- /python/JadooAndDNATranscription.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/python/JadooAndDNATranscription.py -------------------------------------------------------------------------------- /python/telegrambot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/python/telegrambot.py -------------------------------------------------------------------------------- /transformation_in_2D_triangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zahinekbal/codeWith-hacktoberfest/HEAD/transformation_in_2D_triangle.cpp --------------------------------------------------------------------------------