├── Android └── CameraCentricApp │ ├── .gitignore │ ├── .idea │ ├── .gitignore │ ├── compiler.xml │ ├── gradle.xml │ ├── jarRepositories.xml │ ├── misc.xml │ └── vcs.xml │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── cameracentricapp │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── cameracentricapp │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ └── provider_paths.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── cameracentricapp │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── C ├── BFS │ └── BFS.c ├── DFS │ └── DFS.c ├── LinkedList │ ├── Circular_Doubly_Linked_List │ │ ├── .gitignore │ │ ├── Deleting.c │ │ ├── Inserting.c │ │ ├── README.md │ │ └── Traversing.c │ ├── Circular_Linked_List │ │ ├── .gitignore │ │ ├── Deleting.c │ │ ├── Inserting.c │ │ ├── README.md │ │ └── Traversing.c │ ├── Cycle creation and detection in Linked List │ ├── Deque Implementation using Linked List │ │ ├── input restricted deque.h │ │ ├── output restricted deque.h │ │ └── readme.md │ ├── Doubly_Linked_List │ │ ├── .gitignore │ │ ├── Deleting.c │ │ ├── Inserting.c │ │ ├── README.md │ │ └── Traversing.c │ ├── Singly_Linked_List │ │ ├── .gitignore │ │ ├── Deleting.c │ │ ├── Inserting.c │ │ ├── README.md │ │ └── Traversing.c │ └── linkedlist.c ├── Printing Pattern.c ├── Searching │ ├── .gitignore │ ├── BinarySearch.c │ ├── InterSearch.c │ ├── JumpSearch.c │ ├── LinearSearch.c │ └── README.md ├── SortingC │ ├── .gitignore │ ├── BubbleSort.c │ ├── MergeSort.c │ ├── QuickSort.c │ ├── README.md │ ├── RadixSort.c │ ├── SelectionSort.c │ ├── Shell-Sort.c │ ├── bubblesortMethod2.c │ └── insertionSort.c ├── gcd_using_recursion.c ├── queuearray.c ├── reverse_number.c └── stack.c ├── CPP ├── BFS │ ├── BFS_Adj_List.cpp │ ├── BFS_graph_traversal.cpp │ └── GRAPHBFS.cpp ├── Catalan │ ├── Catalan using DP.cpp │ └── Catalan using Inverse Modulo.cpp ├── DFS │ ├── Bridges.cpp │ ├── Building_teams.cpp │ ├── Iterative Deepening Depth First Search.cpp │ └── dfsalgo.cpp ├── DP │ ├── Bellman Ford Algorithm.cpp │ ├── knapsack.cpp │ └── matrix_chain_multiplication.cpp ├── Dijikstra │ ├── Dijkshtra Adjaceny List and Heap (ELogV).cpp │ ├── Dijkshtra Adjaceny List and Heap.cpp │ ├── Dijkshtra using operator overloading Priority Queue.cpp │ ├── Dijstra_with_negative_edge.cpp │ └── dijikstra.cpp ├── Floyd-Warshall │ ├── Floyd–Warshall Algorithm.cpp │ └── flyod_warshall.cpp ├── LinkedList │ ├── Deque Using Linked List.cpp │ ├── Doubly Linked List Full Implementation.cpp │ ├── Linkedlist.cpp │ ├── ReverseDoublyLinkedList.cpp │ ├── linked_list_all_functions.cpp │ ├── polynomialSumByLinkedList.cpp │ └── swap_nodes_linked_list.cpp ├── Matrix │ ├── SpiralMatrixSort.cpp │ ├── ananya998_rotate_a_matrix.cpp │ └── spiral_matrix.cpp ├── Numbers │ ├── Avg_Marks.cpp │ ├── Nth Fibonacci Number.cpp │ ├── Nth_Term_of_Fibonacci_series.cpp │ ├── alternate positive and negative numbers.cpp │ └── numberPattern.cpp ├── OOPS │ ├── DeepCopy and ShallowCopy.cpp │ └── Polynomial.cpp ├── Prims Algorithm │ └── prims.cpp ├── PrimsAlgoCPP │ ├── Prims.cpp │ └── prims_ALgo.cpp ├── Queue │ ├── Improved_Bubble_Sort.cpp │ ├── insert_delete_circular_queue.cpp │ ├── queueUsingArray.cpp │ └── queueUsingLinkedList.cpp ├── STACK │ ├── Parenthesischeck.cpp │ ├── Stack.cpp │ ├── Valid Parenthesis.cpp │ ├── stack_using_STL.cpp │ └── two_stack.cpp ├── STL_Vector │ ├── clear().cpp │ ├── erase().cpp │ ├── front() and back().cpp │ ├── init │ ├── initialization().cpp │ ├── insert().cpp │ ├── pop_back().cpp │ ├── push_back().cpp │ ├── resize().cpp │ └── size().cpp ├── SegmentTree │ ├── MaxElementInRange.cpp │ ├── kthOne_SegmentTree.cpp │ └── numberOfInverstions_segmentTree.cpp ├── Sorting │ ├── BubbleSort.cpp │ ├── Bucket Sort.cpp │ ├── HeapSort.cpp │ ├── Insertionsort4.cpp │ ├── Radix_sort.cpp │ ├── Selection sort │ │ ├── Selection sort.cpp │ │ ├── selection_sort.cpp │ │ └── selectionsort.cpp │ ├── Sorting_Algorithms_cpp │ │ ├── BubbleSort.cpp │ │ ├── HeapSort.cpp │ │ ├── InsertionSort.cpp │ │ ├── MergeSort.cpp │ │ ├── QuickSort.cpp │ │ ├── RadixSort.cpp │ │ ├── ReadMe.md │ │ └── SelectionSort.cpp │ ├── bubblesort2.cpp │ ├── heap_sort_dsa.cpp │ ├── inser_sort3.cpp │ ├── insertion.cpp.txt │ ├── insertionSort.cpp │ ├── insertionsort_code.cpp │ ├── mergesort.cpp │ ├── quicksort2.cpp │ └── quicksort_algo.cpp ├── Trees │ ├── Tree_with_N_nodes.cpp │ ├── brian_kerningam_algo.cpp │ └── kruskalsMinimumSpanningTreeAlgorithm.cpp ├── arrays │ ├── Queue_using_array.cpp │ └── SQRT_Decomposition.cpp ├── binarysearch.cpp ├── caesar_cipher.cpp ├── calculator_using_templatefnc.cpp ├── insertion.cpp └── string algorithms │ └── z_function.cpp ├── Java ├── Addition │ ├── addNumberusingfunction.java │ └── addition.java ├── BFS │ └── BFS.java ├── Binary Trees │ └── BinaryTree.java ├── GRAM_SCHMIDT_PROCESS.java ├── KthLargestElement.java ├── Largestsum.java ├── LinkedList.java ├── LongestSubstringWithNonRepeatingCharacters.java ├── Min_Element_In_Stack.java ├── Minimum bracket Reversal.java ├── Numbers │ ├── Factorial.java │ ├── Fascinating Numbers.java │ ├── FibonacciBigNumbers.java │ ├── Neon Number.java │ ├── PrimeNumber.java │ ├── Subtract.java │ └── SumOfPrices.java ├── OrderAgnosticBinary.java ├── Program for Tower of Hanoi.java ├── Program to Format Time in AM-PM.java ├── RotateArray.java ├── Sorting │ ├── InsertionSort.java │ ├── InsertionSort2.java │ ├── MergeSort.java │ ├── Quick.java │ ├── RadixSort2.java │ ├── Randomized_Quick_Sort.java │ ├── SelectionSort.java │ ├── Sortarray.java │ ├── circle_sort.java │ ├── quickSort.java │ └── radixSort.java ├── Stack_Using_LinkedList.java ├── SubArray.java └── insertion.java ├── KadaneAlgorithm ├── MDFiles ├── Addition.md ├── CONTRIBUTING.md └── cheatsheet.md ├── Priority_Queue ├── Product Of Array Except Self ├── Python ├── BinarySearch.py ├── Create S3_To_DynamoDB.py ├── Hackerankpattern.py ├── Job _scheduling-Shouvik-99.py ├── Lapindromes.py ├── PYTHONic_SIRI.py ├── Program to Solve Quadratic Equation.py ├── Sorting │ └── Bubblesort.py ├── Valid Sudoku.py ├── calculator.py ├── fibonacci_golden_ratio.py ├── generador de contraseñas.py ├── list.py ├── towerOfHanoi.py └── wifi_info.py ├── README.md ├── TicTacToe ├── tic_tac_toe.cpp ├── tic_tac_toe.py └── tictactoe.py ├── _design ├── Awesome Cheatsheets.sketch ├── awesome_cheatsheets_logo.png ├── awesome_cheatsheets_logo.psd ├── awesome_cheatsheets_logo@2x.png ├── awesome_cheatsheets_logo@4x.png └── cover_github@2x.png ├── backend ├── adonis.js ├── django.py ├── express.js ├── feathers.js ├── laravel.php ├── moleculer.js ├── node.js └── sails.js ├── c++ ├── Count set bits in an integer Solution.cpp ├── Duplicate String.cpp ├── Dutch_National_Flag_Algorithm.cpp ├── MTT.cpp ├── Magical_Doors.cpp ├── MatrixExponentiation.cpp ├── Modular_Equation_codechef.cpp ├── Mountain-Points.cpp ├── N-Queens.cpp ├── Reverse word.cpp ├── Shortest_Job_First.cpp ├── Sudoku.cpp ├── Trapping Rain Water.cpp ├── TravellingSalesman.cpp ├── countOfSubset.cpp ├── fibonacci_series_code.cpp ├── first_n_primes.cpp ├── kmp.cpp ├── longestpathsum.cpp ├── main.cpp ├── maximum subarray sun.cpp ├── multiplymatrix.cpp ├── nextGreaterToLeft.cpp ├── nim_Game.cpp ├── sieve.cpp ├── stocks_Buy_And_Sell_Problem.cpp ├── subsetsum.cpp ├── suffix_array_n_logn.cpp ├── swaping.cpp └── two-sum.cpp ├── databases ├── mysql.sh └── redis.sh ├── division of numbers using GUI ├── frontend ├── angular.js ├── angularjs.js ├── ember.js ├── html5.html ├── react.js ├── tailwind.css └── vue.js ├── javascript ├── LinearSearch.js └── sortstack.js ├── javascriptalert().html ├── languages ├── C#.txt ├── C.txt ├── XML.md ├── bash.sh ├── golang.md ├── java.md ├── javascript.js ├── php.php └── python.md ├── logistic_regression_from__scratch.ipynb ├── tools ├── aws.sh ├── curl.sh ├── docker.sh ├── drush.sh ├── elasticsearch.js ├── emmet.md ├── gcp.md ├── git.sh ├── heroku.sh ├── kubernetes.md ├── macos.sh ├── nanobox_boxfile.yml ├── nanobox_cli.sh ├── nginx.sh ├── pm2.sh ├── puppeteer.js ├── sublime_text.md ├── ubuntu.sh ├── vim.txt ├── vscode.md └── xcode.txt └── topo sort.cp /Android/CameraCentricApp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Android/CameraCentricApp/.gitignore -------------------------------------------------------------------------------- /Android/CameraCentricApp/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /Android/CameraCentricApp/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Android/CameraCentricApp/.idea/compiler.xml -------------------------------------------------------------------------------- /Android/CameraCentricApp/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Android/CameraCentricApp/.idea/gradle.xml -------------------------------------------------------------------------------- /Android/CameraCentricApp/.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Android/CameraCentricApp/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /Android/CameraCentricApp/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Android/CameraCentricApp/.idea/misc.xml -------------------------------------------------------------------------------- /Android/CameraCentricApp/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Android/CameraCentricApp/.idea/vcs.xml -------------------------------------------------------------------------------- /Android/CameraCentricApp/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /Android/CameraCentricApp/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Android/CameraCentricApp/app/build.gradle -------------------------------------------------------------------------------- /Android/CameraCentricApp/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Android/CameraCentricApp/app/proguard-rules.pro -------------------------------------------------------------------------------- /Android/CameraCentricApp/app/src/androidTest/java/com/example/cameracentricapp/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Android/CameraCentricApp/app/src/androidTest/java/com/example/cameracentricapp/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /Android/CameraCentricApp/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Android/CameraCentricApp/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Android/CameraCentricApp/app/src/main/java/com/example/cameracentricapp/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Android/CameraCentricApp/app/src/main/java/com/example/cameracentricapp/MainActivity.java -------------------------------------------------------------------------------- /Android/CameraCentricApp/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Android/CameraCentricApp/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /Android/CameraCentricApp/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Android/CameraCentricApp/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /Android/CameraCentricApp/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Android/CameraCentricApp/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /Android/CameraCentricApp/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Android/CameraCentricApp/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /Android/CameraCentricApp/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Android/CameraCentricApp/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /Android/CameraCentricApp/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Android/CameraCentricApp/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/CameraCentricApp/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Android/CameraCentricApp/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Android/CameraCentricApp/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Android/CameraCentricApp/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/CameraCentricApp/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Android/CameraCentricApp/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Android/CameraCentricApp/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Android/CameraCentricApp/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/CameraCentricApp/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Android/CameraCentricApp/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Android/CameraCentricApp/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Android/CameraCentricApp/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/CameraCentricApp/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Android/CameraCentricApp/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Android/CameraCentricApp/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Android/CameraCentricApp/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/CameraCentricApp/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Android/CameraCentricApp/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Android/CameraCentricApp/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Android/CameraCentricApp/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /Android/CameraCentricApp/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Android/CameraCentricApp/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Android/CameraCentricApp/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Android/CameraCentricApp/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Android/CameraCentricApp/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Android/CameraCentricApp/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /Android/CameraCentricApp/app/src/main/res/xml/provider_paths.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Android/CameraCentricApp/app/src/main/res/xml/provider_paths.xml -------------------------------------------------------------------------------- /Android/CameraCentricApp/app/src/test/java/com/example/cameracentricapp/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Android/CameraCentricApp/app/src/test/java/com/example/cameracentricapp/ExampleUnitTest.java -------------------------------------------------------------------------------- /Android/CameraCentricApp/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Android/CameraCentricApp/build.gradle -------------------------------------------------------------------------------- /Android/CameraCentricApp/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Android/CameraCentricApp/gradle.properties -------------------------------------------------------------------------------- /Android/CameraCentricApp/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Android/CameraCentricApp/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Android/CameraCentricApp/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Android/CameraCentricApp/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Android/CameraCentricApp/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Android/CameraCentricApp/gradlew -------------------------------------------------------------------------------- /Android/CameraCentricApp/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Android/CameraCentricApp/gradlew.bat -------------------------------------------------------------------------------- /Android/CameraCentricApp/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name = "CameraCentricApp" -------------------------------------------------------------------------------- /C/BFS/BFS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/C/BFS/BFS.c -------------------------------------------------------------------------------- /C/DFS/DFS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/C/DFS/DFS.c -------------------------------------------------------------------------------- /C/LinkedList/Circular_Doubly_Linked_List/.gitignore: -------------------------------------------------------------------------------- 1 | a.out -------------------------------------------------------------------------------- /C/LinkedList/Circular_Doubly_Linked_List/Deleting.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/C/LinkedList/Circular_Doubly_Linked_List/Deleting.c -------------------------------------------------------------------------------- /C/LinkedList/Circular_Doubly_Linked_List/Inserting.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/C/LinkedList/Circular_Doubly_Linked_List/Inserting.c -------------------------------------------------------------------------------- /C/LinkedList/Circular_Doubly_Linked_List/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/C/LinkedList/Circular_Doubly_Linked_List/README.md -------------------------------------------------------------------------------- /C/LinkedList/Circular_Doubly_Linked_List/Traversing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/C/LinkedList/Circular_Doubly_Linked_List/Traversing.c -------------------------------------------------------------------------------- /C/LinkedList/Circular_Linked_List/.gitignore: -------------------------------------------------------------------------------- 1 | a.out -------------------------------------------------------------------------------- /C/LinkedList/Circular_Linked_List/Deleting.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/C/LinkedList/Circular_Linked_List/Deleting.c -------------------------------------------------------------------------------- /C/LinkedList/Circular_Linked_List/Inserting.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/C/LinkedList/Circular_Linked_List/Inserting.c -------------------------------------------------------------------------------- /C/LinkedList/Circular_Linked_List/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/C/LinkedList/Circular_Linked_List/README.md -------------------------------------------------------------------------------- /C/LinkedList/Circular_Linked_List/Traversing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/C/LinkedList/Circular_Linked_List/Traversing.c -------------------------------------------------------------------------------- /C/LinkedList/Cycle creation and detection in Linked List: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/C/LinkedList/Cycle creation and detection in Linked List -------------------------------------------------------------------------------- /C/LinkedList/Deque Implementation using Linked List/input restricted deque.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/C/LinkedList/Deque Implementation using Linked List/input restricted deque.h -------------------------------------------------------------------------------- /C/LinkedList/Deque Implementation using Linked List/output restricted deque.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/C/LinkedList/Deque Implementation using Linked List/output restricted deque.h -------------------------------------------------------------------------------- /C/LinkedList/Deque Implementation using Linked List/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/C/LinkedList/Deque Implementation using Linked List/readme.md -------------------------------------------------------------------------------- /C/LinkedList/Doubly_Linked_List/.gitignore: -------------------------------------------------------------------------------- 1 | a.out -------------------------------------------------------------------------------- /C/LinkedList/Doubly_Linked_List/Deleting.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/C/LinkedList/Doubly_Linked_List/Deleting.c -------------------------------------------------------------------------------- /C/LinkedList/Doubly_Linked_List/Inserting.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/C/LinkedList/Doubly_Linked_List/Inserting.c -------------------------------------------------------------------------------- /C/LinkedList/Doubly_Linked_List/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/C/LinkedList/Doubly_Linked_List/README.md -------------------------------------------------------------------------------- /C/LinkedList/Doubly_Linked_List/Traversing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/C/LinkedList/Doubly_Linked_List/Traversing.c -------------------------------------------------------------------------------- /C/LinkedList/Singly_Linked_List/.gitignore: -------------------------------------------------------------------------------- 1 | a.out -------------------------------------------------------------------------------- /C/LinkedList/Singly_Linked_List/Deleting.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/C/LinkedList/Singly_Linked_List/Deleting.c -------------------------------------------------------------------------------- /C/LinkedList/Singly_Linked_List/Inserting.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/C/LinkedList/Singly_Linked_List/Inserting.c -------------------------------------------------------------------------------- /C/LinkedList/Singly_Linked_List/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/C/LinkedList/Singly_Linked_List/README.md -------------------------------------------------------------------------------- /C/LinkedList/Singly_Linked_List/Traversing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/C/LinkedList/Singly_Linked_List/Traversing.c -------------------------------------------------------------------------------- /C/LinkedList/linkedlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/C/LinkedList/linkedlist.c -------------------------------------------------------------------------------- /C/Printing Pattern.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/C/Printing Pattern.c -------------------------------------------------------------------------------- /C/Searching/.gitignore: -------------------------------------------------------------------------------- 1 | a.out -------------------------------------------------------------------------------- /C/Searching/BinarySearch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/C/Searching/BinarySearch.c -------------------------------------------------------------------------------- /C/Searching/InterSearch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/C/Searching/InterSearch.c -------------------------------------------------------------------------------- /C/Searching/JumpSearch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/C/Searching/JumpSearch.c -------------------------------------------------------------------------------- /C/Searching/LinearSearch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/C/Searching/LinearSearch.c -------------------------------------------------------------------------------- /C/Searching/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/C/Searching/README.md -------------------------------------------------------------------------------- /C/SortingC/.gitignore: -------------------------------------------------------------------------------- 1 | a.out -------------------------------------------------------------------------------- /C/SortingC/BubbleSort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/C/SortingC/BubbleSort.c -------------------------------------------------------------------------------- /C/SortingC/MergeSort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/C/SortingC/MergeSort.c -------------------------------------------------------------------------------- /C/SortingC/QuickSort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/C/SortingC/QuickSort.c -------------------------------------------------------------------------------- /C/SortingC/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/C/SortingC/README.md -------------------------------------------------------------------------------- /C/SortingC/RadixSort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/C/SortingC/RadixSort.c -------------------------------------------------------------------------------- /C/SortingC/SelectionSort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/C/SortingC/SelectionSort.c -------------------------------------------------------------------------------- /C/SortingC/Shell-Sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/C/SortingC/Shell-Sort.c -------------------------------------------------------------------------------- /C/SortingC/bubblesortMethod2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/C/SortingC/bubblesortMethod2.c -------------------------------------------------------------------------------- /C/SortingC/insertionSort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/C/SortingC/insertionSort.c -------------------------------------------------------------------------------- /C/gcd_using_recursion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/C/gcd_using_recursion.c -------------------------------------------------------------------------------- /C/queuearray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/C/queuearray.c -------------------------------------------------------------------------------- /C/reverse_number.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/C/reverse_number.c -------------------------------------------------------------------------------- /C/stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/C/stack.c -------------------------------------------------------------------------------- /CPP/BFS/BFS_Adj_List.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/BFS/BFS_Adj_List.cpp -------------------------------------------------------------------------------- /CPP/BFS/BFS_graph_traversal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/BFS/BFS_graph_traversal.cpp -------------------------------------------------------------------------------- /CPP/BFS/GRAPHBFS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/BFS/GRAPHBFS.cpp -------------------------------------------------------------------------------- /CPP/Catalan/Catalan using DP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/Catalan/Catalan using DP.cpp -------------------------------------------------------------------------------- /CPP/Catalan/Catalan using Inverse Modulo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/Catalan/Catalan using Inverse Modulo.cpp -------------------------------------------------------------------------------- /CPP/DFS/Bridges.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/DFS/Bridges.cpp -------------------------------------------------------------------------------- /CPP/DFS/Building_teams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/DFS/Building_teams.cpp -------------------------------------------------------------------------------- /CPP/DFS/Iterative Deepening Depth First Search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/DFS/Iterative Deepening Depth First Search.cpp -------------------------------------------------------------------------------- /CPP/DFS/dfsalgo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/DFS/dfsalgo.cpp -------------------------------------------------------------------------------- /CPP/DP/Bellman Ford Algorithm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/DP/Bellman Ford Algorithm.cpp -------------------------------------------------------------------------------- /CPP/DP/knapsack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/DP/knapsack.cpp -------------------------------------------------------------------------------- /CPP/DP/matrix_chain_multiplication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/DP/matrix_chain_multiplication.cpp -------------------------------------------------------------------------------- /CPP/Dijikstra/Dijkshtra Adjaceny List and Heap (ELogV).cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/Dijikstra/Dijkshtra Adjaceny List and Heap (ELogV).cpp -------------------------------------------------------------------------------- /CPP/Dijikstra/Dijkshtra Adjaceny List and Heap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/Dijikstra/Dijkshtra Adjaceny List and Heap.cpp -------------------------------------------------------------------------------- /CPP/Dijikstra/Dijkshtra using operator overloading Priority Queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/Dijikstra/Dijkshtra using operator overloading Priority Queue.cpp -------------------------------------------------------------------------------- /CPP/Dijikstra/Dijstra_with_negative_edge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/Dijikstra/Dijstra_with_negative_edge.cpp -------------------------------------------------------------------------------- /CPP/Dijikstra/dijikstra.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CPP/Floyd-Warshall/Floyd–Warshall Algorithm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/Floyd-Warshall/Floyd–Warshall Algorithm.cpp -------------------------------------------------------------------------------- /CPP/Floyd-Warshall/flyod_warshall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/Floyd-Warshall/flyod_warshall.cpp -------------------------------------------------------------------------------- /CPP/LinkedList/Deque Using Linked List.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/LinkedList/Deque Using Linked List.cpp -------------------------------------------------------------------------------- /CPP/LinkedList/Doubly Linked List Full Implementation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/LinkedList/Doubly Linked List Full Implementation.cpp -------------------------------------------------------------------------------- /CPP/LinkedList/Linkedlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/LinkedList/Linkedlist.cpp -------------------------------------------------------------------------------- /CPP/LinkedList/ReverseDoublyLinkedList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/LinkedList/ReverseDoublyLinkedList.cpp -------------------------------------------------------------------------------- /CPP/LinkedList/linked_list_all_functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/LinkedList/linked_list_all_functions.cpp -------------------------------------------------------------------------------- /CPP/LinkedList/polynomialSumByLinkedList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/LinkedList/polynomialSumByLinkedList.cpp -------------------------------------------------------------------------------- /CPP/LinkedList/swap_nodes_linked_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/LinkedList/swap_nodes_linked_list.cpp -------------------------------------------------------------------------------- /CPP/Matrix/SpiralMatrixSort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/Matrix/SpiralMatrixSort.cpp -------------------------------------------------------------------------------- /CPP/Matrix/ananya998_rotate_a_matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/Matrix/ananya998_rotate_a_matrix.cpp -------------------------------------------------------------------------------- /CPP/Matrix/spiral_matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/Matrix/spiral_matrix.cpp -------------------------------------------------------------------------------- /CPP/Numbers/Avg_Marks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/Numbers/Avg_Marks.cpp -------------------------------------------------------------------------------- /CPP/Numbers/Nth Fibonacci Number.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/Numbers/Nth Fibonacci Number.cpp -------------------------------------------------------------------------------- /CPP/Numbers/Nth_Term_of_Fibonacci_series.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/Numbers/Nth_Term_of_Fibonacci_series.cpp -------------------------------------------------------------------------------- /CPP/Numbers/alternate positive and negative numbers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/Numbers/alternate positive and negative numbers.cpp -------------------------------------------------------------------------------- /CPP/Numbers/numberPattern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/Numbers/numberPattern.cpp -------------------------------------------------------------------------------- /CPP/OOPS/DeepCopy and ShallowCopy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/OOPS/DeepCopy and ShallowCopy.cpp -------------------------------------------------------------------------------- /CPP/OOPS/Polynomial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/OOPS/Polynomial.cpp -------------------------------------------------------------------------------- /CPP/Prims Algorithm/prims.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/Prims Algorithm/prims.cpp -------------------------------------------------------------------------------- /CPP/PrimsAlgoCPP/Prims.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/PrimsAlgoCPP/Prims.cpp -------------------------------------------------------------------------------- /CPP/PrimsAlgoCPP/prims_ALgo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/PrimsAlgoCPP/prims_ALgo.cpp -------------------------------------------------------------------------------- /CPP/Queue/Improved_Bubble_Sort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/Queue/Improved_Bubble_Sort.cpp -------------------------------------------------------------------------------- /CPP/Queue/insert_delete_circular_queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/Queue/insert_delete_circular_queue.cpp -------------------------------------------------------------------------------- /CPP/Queue/queueUsingArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/Queue/queueUsingArray.cpp -------------------------------------------------------------------------------- /CPP/Queue/queueUsingLinkedList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/Queue/queueUsingLinkedList.cpp -------------------------------------------------------------------------------- /CPP/STACK/Parenthesischeck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/STACK/Parenthesischeck.cpp -------------------------------------------------------------------------------- /CPP/STACK/Stack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/STACK/Stack.cpp -------------------------------------------------------------------------------- /CPP/STACK/Valid Parenthesis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/STACK/Valid Parenthesis.cpp -------------------------------------------------------------------------------- /CPP/STACK/stack_using_STL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/STACK/stack_using_STL.cpp -------------------------------------------------------------------------------- /CPP/STACK/two_stack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/STACK/two_stack.cpp -------------------------------------------------------------------------------- /CPP/STL_Vector/clear().cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/STL_Vector/clear().cpp -------------------------------------------------------------------------------- /CPP/STL_Vector/erase().cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/STL_Vector/erase().cpp -------------------------------------------------------------------------------- /CPP/STL_Vector/front() and back().cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/STL_Vector/front() and back().cpp -------------------------------------------------------------------------------- /CPP/STL_Vector/init: -------------------------------------------------------------------------------- 1 | init 2 | -------------------------------------------------------------------------------- /CPP/STL_Vector/initialization().cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/STL_Vector/initialization().cpp -------------------------------------------------------------------------------- /CPP/STL_Vector/insert().cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/STL_Vector/insert().cpp -------------------------------------------------------------------------------- /CPP/STL_Vector/pop_back().cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/STL_Vector/pop_back().cpp -------------------------------------------------------------------------------- /CPP/STL_Vector/push_back().cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/STL_Vector/push_back().cpp -------------------------------------------------------------------------------- /CPP/STL_Vector/resize().cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/STL_Vector/resize().cpp -------------------------------------------------------------------------------- /CPP/STL_Vector/size().cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/STL_Vector/size().cpp -------------------------------------------------------------------------------- /CPP/SegmentTree/MaxElementInRange.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/SegmentTree/MaxElementInRange.cpp -------------------------------------------------------------------------------- /CPP/SegmentTree/kthOne_SegmentTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/SegmentTree/kthOne_SegmentTree.cpp -------------------------------------------------------------------------------- /CPP/SegmentTree/numberOfInverstions_segmentTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/SegmentTree/numberOfInverstions_segmentTree.cpp -------------------------------------------------------------------------------- /CPP/Sorting/BubbleSort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/Sorting/BubbleSort.cpp -------------------------------------------------------------------------------- /CPP/Sorting/Bucket Sort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/Sorting/Bucket Sort.cpp -------------------------------------------------------------------------------- /CPP/Sorting/HeapSort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/Sorting/HeapSort.cpp -------------------------------------------------------------------------------- /CPP/Sorting/Insertionsort4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/Sorting/Insertionsort4.cpp -------------------------------------------------------------------------------- /CPP/Sorting/Radix_sort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/Sorting/Radix_sort.cpp -------------------------------------------------------------------------------- /CPP/Sorting/Selection sort/Selection sort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/Sorting/Selection sort/Selection sort.cpp -------------------------------------------------------------------------------- /CPP/Sorting/Selection sort/selection_sort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/Sorting/Selection sort/selection_sort.cpp -------------------------------------------------------------------------------- /CPP/Sorting/Selection sort/selectionsort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/Sorting/Selection sort/selectionsort.cpp -------------------------------------------------------------------------------- /CPP/Sorting/Sorting_Algorithms_cpp/BubbleSort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/Sorting/Sorting_Algorithms_cpp/BubbleSort.cpp -------------------------------------------------------------------------------- /CPP/Sorting/Sorting_Algorithms_cpp/HeapSort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/Sorting/Sorting_Algorithms_cpp/HeapSort.cpp -------------------------------------------------------------------------------- /CPP/Sorting/Sorting_Algorithms_cpp/InsertionSort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/Sorting/Sorting_Algorithms_cpp/InsertionSort.cpp -------------------------------------------------------------------------------- /CPP/Sorting/Sorting_Algorithms_cpp/MergeSort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/Sorting/Sorting_Algorithms_cpp/MergeSort.cpp -------------------------------------------------------------------------------- /CPP/Sorting/Sorting_Algorithms_cpp/QuickSort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/Sorting/Sorting_Algorithms_cpp/QuickSort.cpp -------------------------------------------------------------------------------- /CPP/Sorting/Sorting_Algorithms_cpp/RadixSort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/Sorting/Sorting_Algorithms_cpp/RadixSort.cpp -------------------------------------------------------------------------------- /CPP/Sorting/Sorting_Algorithms_cpp/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/Sorting/Sorting_Algorithms_cpp/ReadMe.md -------------------------------------------------------------------------------- /CPP/Sorting/Sorting_Algorithms_cpp/SelectionSort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/Sorting/Sorting_Algorithms_cpp/SelectionSort.cpp -------------------------------------------------------------------------------- /CPP/Sorting/bubblesort2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/Sorting/bubblesort2.cpp -------------------------------------------------------------------------------- /CPP/Sorting/heap_sort_dsa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/Sorting/heap_sort_dsa.cpp -------------------------------------------------------------------------------- /CPP/Sorting/inser_sort3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/Sorting/inser_sort3.cpp -------------------------------------------------------------------------------- /CPP/Sorting/insertion.cpp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/Sorting/insertion.cpp.txt -------------------------------------------------------------------------------- /CPP/Sorting/insertionSort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/Sorting/insertionSort.cpp -------------------------------------------------------------------------------- /CPP/Sorting/insertionsort_code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/Sorting/insertionsort_code.cpp -------------------------------------------------------------------------------- /CPP/Sorting/mergesort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/Sorting/mergesort.cpp -------------------------------------------------------------------------------- /CPP/Sorting/quicksort2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/Sorting/quicksort2.cpp -------------------------------------------------------------------------------- /CPP/Sorting/quicksort_algo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/Sorting/quicksort_algo.cpp -------------------------------------------------------------------------------- /CPP/Trees/Tree_with_N_nodes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/Trees/Tree_with_N_nodes.cpp -------------------------------------------------------------------------------- /CPP/Trees/brian_kerningam_algo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/Trees/brian_kerningam_algo.cpp -------------------------------------------------------------------------------- /CPP/Trees/kruskalsMinimumSpanningTreeAlgorithm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/Trees/kruskalsMinimumSpanningTreeAlgorithm.cpp -------------------------------------------------------------------------------- /CPP/arrays/Queue_using_array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/arrays/Queue_using_array.cpp -------------------------------------------------------------------------------- /CPP/arrays/SQRT_Decomposition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/arrays/SQRT_Decomposition.cpp -------------------------------------------------------------------------------- /CPP/binarysearch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/binarysearch.cpp -------------------------------------------------------------------------------- /CPP/caesar_cipher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/caesar_cipher.cpp -------------------------------------------------------------------------------- /CPP/calculator_using_templatefnc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/calculator_using_templatefnc.cpp -------------------------------------------------------------------------------- /CPP/insertion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/insertion.cpp -------------------------------------------------------------------------------- /CPP/string algorithms/z_function.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/CPP/string algorithms/z_function.cpp -------------------------------------------------------------------------------- /Java/Addition/addNumberusingfunction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Java/Addition/addNumberusingfunction.java -------------------------------------------------------------------------------- /Java/Addition/addition.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Java/Addition/addition.java -------------------------------------------------------------------------------- /Java/BFS/BFS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Java/BFS/BFS.java -------------------------------------------------------------------------------- /Java/Binary Trees/BinaryTree.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Java/Binary Trees/BinaryTree.java -------------------------------------------------------------------------------- /Java/GRAM_SCHMIDT_PROCESS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Java/GRAM_SCHMIDT_PROCESS.java -------------------------------------------------------------------------------- /Java/KthLargestElement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Java/KthLargestElement.java -------------------------------------------------------------------------------- /Java/Largestsum.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Java/Largestsum.java -------------------------------------------------------------------------------- /Java/LinkedList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Java/LinkedList.java -------------------------------------------------------------------------------- /Java/LongestSubstringWithNonRepeatingCharacters.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Java/LongestSubstringWithNonRepeatingCharacters.java -------------------------------------------------------------------------------- /Java/Min_Element_In_Stack.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Java/Min_Element_In_Stack.java -------------------------------------------------------------------------------- /Java/Minimum bracket Reversal.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Java/Minimum bracket Reversal.java -------------------------------------------------------------------------------- /Java/Numbers/Factorial.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Java/Numbers/Factorial.java -------------------------------------------------------------------------------- /Java/Numbers/Fascinating Numbers.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Java/Numbers/Fascinating Numbers.java -------------------------------------------------------------------------------- /Java/Numbers/FibonacciBigNumbers.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Java/Numbers/FibonacciBigNumbers.java -------------------------------------------------------------------------------- /Java/Numbers/Neon Number.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Java/Numbers/Neon Number.java -------------------------------------------------------------------------------- /Java/Numbers/PrimeNumber.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Java/Numbers/PrimeNumber.java -------------------------------------------------------------------------------- /Java/Numbers/Subtract.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Java/Numbers/Subtract.java -------------------------------------------------------------------------------- /Java/Numbers/SumOfPrices.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Java/Numbers/SumOfPrices.java -------------------------------------------------------------------------------- /Java/OrderAgnosticBinary.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Java/OrderAgnosticBinary.java -------------------------------------------------------------------------------- /Java/Program for Tower of Hanoi.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Java/Program for Tower of Hanoi.java -------------------------------------------------------------------------------- /Java/Program to Format Time in AM-PM.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Java/Program to Format Time in AM-PM.java -------------------------------------------------------------------------------- /Java/RotateArray.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Java/RotateArray.java -------------------------------------------------------------------------------- /Java/Sorting/InsertionSort.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Java/Sorting/InsertionSort.java -------------------------------------------------------------------------------- /Java/Sorting/InsertionSort2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Java/Sorting/InsertionSort2.java -------------------------------------------------------------------------------- /Java/Sorting/MergeSort.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Java/Sorting/MergeSort.java -------------------------------------------------------------------------------- /Java/Sorting/Quick.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Java/Sorting/Quick.java -------------------------------------------------------------------------------- /Java/Sorting/RadixSort2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Java/Sorting/RadixSort2.java -------------------------------------------------------------------------------- /Java/Sorting/Randomized_Quick_Sort.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Java/Sorting/Randomized_Quick_Sort.java -------------------------------------------------------------------------------- /Java/Sorting/SelectionSort.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Java/Sorting/SelectionSort.java -------------------------------------------------------------------------------- /Java/Sorting/Sortarray.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Java/Sorting/Sortarray.java -------------------------------------------------------------------------------- /Java/Sorting/circle_sort.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Java/Sorting/circle_sort.java -------------------------------------------------------------------------------- /Java/Sorting/quickSort.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Java/Sorting/quickSort.java -------------------------------------------------------------------------------- /Java/Sorting/radixSort.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Java/Sorting/radixSort.java -------------------------------------------------------------------------------- /Java/Stack_Using_LinkedList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Java/Stack_Using_LinkedList.java -------------------------------------------------------------------------------- /Java/SubArray.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Java/SubArray.java -------------------------------------------------------------------------------- /Java/insertion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Java/insertion.java -------------------------------------------------------------------------------- /KadaneAlgorithm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/KadaneAlgorithm -------------------------------------------------------------------------------- /MDFiles/Addition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/MDFiles/Addition.md -------------------------------------------------------------------------------- /MDFiles/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/MDFiles/CONTRIBUTING.md -------------------------------------------------------------------------------- /MDFiles/cheatsheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/MDFiles/cheatsheet.md -------------------------------------------------------------------------------- /Priority_Queue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Priority_Queue -------------------------------------------------------------------------------- /Product Of Array Except Self: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Product Of Array Except Self -------------------------------------------------------------------------------- /Python/BinarySearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Python/BinarySearch.py -------------------------------------------------------------------------------- /Python/Create S3_To_DynamoDB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Python/Create S3_To_DynamoDB.py -------------------------------------------------------------------------------- /Python/Hackerankpattern.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Python/Hackerankpattern.py -------------------------------------------------------------------------------- /Python/Job _scheduling-Shouvik-99.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Python/Job _scheduling-Shouvik-99.py -------------------------------------------------------------------------------- /Python/Lapindromes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Python/Lapindromes.py -------------------------------------------------------------------------------- /Python/PYTHONic_SIRI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Python/PYTHONic_SIRI.py -------------------------------------------------------------------------------- /Python/Program to Solve Quadratic Equation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Python/Program to Solve Quadratic Equation.py -------------------------------------------------------------------------------- /Python/Sorting/Bubblesort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Python/Sorting/Bubblesort.py -------------------------------------------------------------------------------- /Python/Valid Sudoku.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Python/Valid Sudoku.py -------------------------------------------------------------------------------- /Python/calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Python/calculator.py -------------------------------------------------------------------------------- /Python/fibonacci_golden_ratio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Python/fibonacci_golden_ratio.py -------------------------------------------------------------------------------- /Python/generador de contraseñas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Python/generador de contraseñas.py -------------------------------------------------------------------------------- /Python/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Python/list.py -------------------------------------------------------------------------------- /Python/towerOfHanoi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Python/towerOfHanoi.py -------------------------------------------------------------------------------- /Python/wifi_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/Python/wifi_info.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/README.md -------------------------------------------------------------------------------- /TicTacToe/tic_tac_toe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/TicTacToe/tic_tac_toe.cpp -------------------------------------------------------------------------------- /TicTacToe/tic_tac_toe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/TicTacToe/tic_tac_toe.py -------------------------------------------------------------------------------- /TicTacToe/tictactoe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/TicTacToe/tictactoe.py -------------------------------------------------------------------------------- /_design/Awesome Cheatsheets.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/_design/Awesome Cheatsheets.sketch -------------------------------------------------------------------------------- /_design/awesome_cheatsheets_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/_design/awesome_cheatsheets_logo.png -------------------------------------------------------------------------------- /_design/awesome_cheatsheets_logo.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/_design/awesome_cheatsheets_logo.psd -------------------------------------------------------------------------------- /_design/awesome_cheatsheets_logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/_design/awesome_cheatsheets_logo@2x.png -------------------------------------------------------------------------------- /_design/awesome_cheatsheets_logo@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/_design/awesome_cheatsheets_logo@4x.png -------------------------------------------------------------------------------- /_design/cover_github@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/_design/cover_github@2x.png -------------------------------------------------------------------------------- /backend/adonis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/backend/adonis.js -------------------------------------------------------------------------------- /backend/django.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/backend/django.py -------------------------------------------------------------------------------- /backend/express.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/backend/express.js -------------------------------------------------------------------------------- /backend/feathers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/backend/feathers.js -------------------------------------------------------------------------------- /backend/laravel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/backend/laravel.php -------------------------------------------------------------------------------- /backend/moleculer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/backend/moleculer.js -------------------------------------------------------------------------------- /backend/node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/backend/node.js -------------------------------------------------------------------------------- /backend/sails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/backend/sails.js -------------------------------------------------------------------------------- /c++/Count set bits in an integer Solution.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/c++/Count set bits in an integer Solution.cpp -------------------------------------------------------------------------------- /c++/Duplicate String.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/c++/Duplicate String.cpp -------------------------------------------------------------------------------- /c++/Dutch_National_Flag_Algorithm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/c++/Dutch_National_Flag_Algorithm.cpp -------------------------------------------------------------------------------- /c++/MTT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/c++/MTT.cpp -------------------------------------------------------------------------------- /c++/Magical_Doors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/c++/Magical_Doors.cpp -------------------------------------------------------------------------------- /c++/MatrixExponentiation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/c++/MatrixExponentiation.cpp -------------------------------------------------------------------------------- /c++/Modular_Equation_codechef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/c++/Modular_Equation_codechef.cpp -------------------------------------------------------------------------------- /c++/Mountain-Points.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/c++/Mountain-Points.cpp -------------------------------------------------------------------------------- /c++/N-Queens.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/c++/N-Queens.cpp -------------------------------------------------------------------------------- /c++/Reverse word.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/c++/Reverse word.cpp -------------------------------------------------------------------------------- /c++/Shortest_Job_First.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/c++/Shortest_Job_First.cpp -------------------------------------------------------------------------------- /c++/Sudoku.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/c++/Sudoku.cpp -------------------------------------------------------------------------------- /c++/Trapping Rain Water.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/c++/Trapping Rain Water.cpp -------------------------------------------------------------------------------- /c++/TravellingSalesman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/c++/TravellingSalesman.cpp -------------------------------------------------------------------------------- /c++/countOfSubset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/c++/countOfSubset.cpp -------------------------------------------------------------------------------- /c++/fibonacci_series_code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/c++/fibonacci_series_code.cpp -------------------------------------------------------------------------------- /c++/first_n_primes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/c++/first_n_primes.cpp -------------------------------------------------------------------------------- /c++/kmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/c++/kmp.cpp -------------------------------------------------------------------------------- /c++/longestpathsum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/c++/longestpathsum.cpp -------------------------------------------------------------------------------- /c++/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/c++/main.cpp -------------------------------------------------------------------------------- /c++/maximum subarray sun.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/c++/maximum subarray sun.cpp -------------------------------------------------------------------------------- /c++/multiplymatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/c++/multiplymatrix.cpp -------------------------------------------------------------------------------- /c++/nextGreaterToLeft.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/c++/nextGreaterToLeft.cpp -------------------------------------------------------------------------------- /c++/nim_Game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/c++/nim_Game.cpp -------------------------------------------------------------------------------- /c++/sieve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/c++/sieve.cpp -------------------------------------------------------------------------------- /c++/stocks_Buy_And_Sell_Problem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/c++/stocks_Buy_And_Sell_Problem.cpp -------------------------------------------------------------------------------- /c++/subsetsum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/c++/subsetsum.cpp -------------------------------------------------------------------------------- /c++/suffix_array_n_logn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/c++/suffix_array_n_logn.cpp -------------------------------------------------------------------------------- /c++/swaping.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/c++/swaping.cpp -------------------------------------------------------------------------------- /c++/two-sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/c++/two-sum.cpp -------------------------------------------------------------------------------- /databases/mysql.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/databases/mysql.sh -------------------------------------------------------------------------------- /databases/redis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/databases/redis.sh -------------------------------------------------------------------------------- /division of numbers using GUI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/division of numbers using GUI -------------------------------------------------------------------------------- /frontend/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/frontend/angular.js -------------------------------------------------------------------------------- /frontend/angularjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/frontend/angularjs.js -------------------------------------------------------------------------------- /frontend/ember.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/frontend/ember.js -------------------------------------------------------------------------------- /frontend/html5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/frontend/html5.html -------------------------------------------------------------------------------- /frontend/react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/frontend/react.js -------------------------------------------------------------------------------- /frontend/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/frontend/tailwind.css -------------------------------------------------------------------------------- /frontend/vue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/frontend/vue.js -------------------------------------------------------------------------------- /javascript/LinearSearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/javascript/LinearSearch.js -------------------------------------------------------------------------------- /javascript/sortstack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/javascript/sortstack.js -------------------------------------------------------------------------------- /javascriptalert().html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/javascriptalert().html -------------------------------------------------------------------------------- /languages/C#.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/languages/C#.txt -------------------------------------------------------------------------------- /languages/C.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/languages/C.txt -------------------------------------------------------------------------------- /languages/XML.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/languages/XML.md -------------------------------------------------------------------------------- /languages/bash.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/languages/bash.sh -------------------------------------------------------------------------------- /languages/golang.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/languages/golang.md -------------------------------------------------------------------------------- /languages/java.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/languages/java.md -------------------------------------------------------------------------------- /languages/javascript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/languages/javascript.js -------------------------------------------------------------------------------- /languages/php.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/languages/php.php -------------------------------------------------------------------------------- /languages/python.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/languages/python.md -------------------------------------------------------------------------------- /logistic_regression_from__scratch.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/logistic_regression_from__scratch.ipynb -------------------------------------------------------------------------------- /tools/aws.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/tools/aws.sh -------------------------------------------------------------------------------- /tools/curl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/tools/curl.sh -------------------------------------------------------------------------------- /tools/docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/tools/docker.sh -------------------------------------------------------------------------------- /tools/drush.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/tools/drush.sh -------------------------------------------------------------------------------- /tools/elasticsearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/tools/elasticsearch.js -------------------------------------------------------------------------------- /tools/emmet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/tools/emmet.md -------------------------------------------------------------------------------- /tools/gcp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/tools/gcp.md -------------------------------------------------------------------------------- /tools/git.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/tools/git.sh -------------------------------------------------------------------------------- /tools/heroku.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/tools/heroku.sh -------------------------------------------------------------------------------- /tools/kubernetes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/tools/kubernetes.md -------------------------------------------------------------------------------- /tools/macos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/tools/macos.sh -------------------------------------------------------------------------------- /tools/nanobox_boxfile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/tools/nanobox_boxfile.yml -------------------------------------------------------------------------------- /tools/nanobox_cli.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/tools/nanobox_cli.sh -------------------------------------------------------------------------------- /tools/nginx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/tools/nginx.sh -------------------------------------------------------------------------------- /tools/pm2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/tools/pm2.sh -------------------------------------------------------------------------------- /tools/puppeteer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/tools/puppeteer.js -------------------------------------------------------------------------------- /tools/sublime_text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/tools/sublime_text.md -------------------------------------------------------------------------------- /tools/ubuntu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/tools/ubuntu.sh -------------------------------------------------------------------------------- /tools/vim.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/tools/vim.txt -------------------------------------------------------------------------------- /tools/vscode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/tools/vscode.md -------------------------------------------------------------------------------- /tools/xcode.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/tools/xcode.txt -------------------------------------------------------------------------------- /topo sort.cp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-forfun/Hactoberfest-accepted/HEAD/topo sort.cp --------------------------------------------------------------------------------