/Snippets

Hacktoberfest 2021

Primary LanguageJupyter Notebook


PRs Welcome GitHub pull requests GitHub issues

Project Tree Structure 📁


Snippets
├─ .DS_Store
├─ AVL TREES.txt
├─ Algorithms
│  ├─ 2Pointer Algorithm
│  │  └─ pairSum.cpp
│  ├─ AVL TREES.txt
│  ├─ Breadth First Search.txt
│  ├─ Depth First Search.txt
│  ├─ Disjoint sets.txt
│  ├─ Dynamic Programming
│  │  ├─ 01KnapsackProblem.cpp
│  │  └─ LongestAlternatingSubsequence
│  ├─ Hash
│  │  ├─ DoubleHashingC++.txt
│  │  ├─ Hash Table Class Chaining.txt
│  │  ├─ Hash Table Quadratic Probing.txt
│  │  └─ HashTableLinearProbingC++.txt
│  ├─ Kadane Algorithm.txt
│  ├─ Krushals Min Cost Spanning Tree.txt
│  ├─ Mathematical Algorithms
│  │  └─ Lucky Numbers
│  ├─ Overview.txt
│  ├─ Prefix Sum Algorithm.txt
│  ├─ Prim Min Spanning Tree.txt
│  ├─ Searching
│  │  ├─ Binary Search
│  │  ├─ LinearSearch.cpp
│  │  ├─ frequencyOf1.cpp
│  │  └─ maximumInBitonic.cpp
│  └─ Sorting Algorithms
│     ├─ Bubble_Sorting.cpp
│     ├─ Insertion_Sort.java
│     └─ IntersectionOfTwoSortedArrays.cpp
├─ Android
│  ├─ LoginScreen.xml
│  ├─ Overview.txt
│  ├─ RetrofitClient.kt
│  ├─ ThrowableErrorStatesRetrofit.kt
│  ├─ appContext.kt
│  ├─ checkNetworkConnection.kt
│  ├─ flutter_foldable_sidebar_demo
│  │  ├─ .metadata
│  │  ├─ README.md
│  │  ├─ android
│  │  │  ├─ app
│  │  │  │  ├─ build.gradle
│  │  │  │  └─ src
│  │  │  │     ├─ debug
│  │  │  │     │  └─ AndroidManifest.xml
│  │  │  │     ├─ main
│  │  │  │     │  ├─ AndroidManifest.xml
│  │  │  │     │  ├─ kotlin
│  │  │  │     │  │  └─ com
│  │  │  │     │  │     └─ example
│  │  │  │     │  │        └─ flutter_foldable_sidebar_demo
│  │  │  │     │  │           └─ MainActivity.kt
│  │  │  │     │  └─ res
│  │  │  │     │     ├─ drawable
│  │  │  │     │     │  └─ launch_background.xml
│  │  │  │     │     ├─ mipmap-hdpi
│  │  │  │     │     │  └─ ic_launcher.png
│  │  │  │     │     ├─ mipmap-mdpi
│  │  │  │     │     │  └─ ic_launcher.png
│  │  │  │     │     ├─ mipmap-xhdpi
│  │  │  │     │     │  └─ ic_launcher.png
│  │  │  │     │     ├─ mipmap-xxhdpi
│  │  │  │     │     │  └─ ic_launcher.png
│  │  │  │     │     ├─ mipmap-xxxhdpi
│  │  │  │     │     │  └─ ic_launcher.png
│  │  │  │     │     └─ values
│  │  │  │     │        └─ styles.xml
│  │  │  │     └─ profile
│  │  │  │        └─ AndroidManifest.xml
│  │  │  ├─ build.gradle
│  │  │  ├─ gradle
│  │  │  │  └─ wrapper
│  │  │  │     └─ gradle-wrapper.properties
│  │  │  ├─ gradle.properties
│  │  │  └─ settings.gradle
│  │  ├─ assets
│  │  │  ├─ devs.jpg
│  │  │  ├─ powered_by.png
│  │  │  └─ rps_logo.png
│  │  ├─ ios
│  │  │  ├─ Flutter
│  │  │  │  ├─ AppFrameworkInfo.plist
│  │  │  │  ├─ Debug.xcconfig
│  │  │  │  └─ Release.xcconfig
│  │  │  ├─ Runner
│  │  │  │  ├─ AppDelegate.swift
│  │  │  │  ├─ Assets.xcassets
│  │  │  │  │  ├─ AppIcon.appiconset
│  │  │  │  │  │  ├─ Contents.json
│  │  │  │  │  │  ├─ Icon-App-1024x1024@1x.png
│  │  │  │  │  │  ├─ Icon-App-20x20@1x.png
│  │  │  │  │  │  ├─ Icon-App-20x20@2x.png
│  │  │  │  │  │  ├─ Icon-App-20x20@3x.png
│  │  │  │  │  │  ├─ Icon-App-29x29@1x.png
│  │  │  │  │  │  ├─ Icon-App-29x29@2x.png
│  │  │  │  │  │  ├─ Icon-App-29x29@3x.png
│  │  │  │  │  │  ├─ Icon-App-40x40@1x.png
│  │  │  │  │  │  ├─ Icon-App-40x40@2x.png
│  │  │  │  │  │  ├─ Icon-App-40x40@3x.png
│  │  │  │  │  │  ├─ Icon-App-60x60@2x.png
│  │  │  │  │  │  ├─ Icon-App-60x60@3x.png
│  │  │  │  │  │  ├─ Icon-App-76x76@1x.png
│  │  │  │  │  │  ├─ Icon-App-76x76@2x.png
│  │  │  │  │  │  └─ Icon-App-83.5x83.5@2x.png
│  │  │  │  │  └─ LaunchImage.imageset
│  │  │  │  │     ├─ Contents.json
│  │  │  │  │     ├─ LaunchImage.png
│  │  │  │  │     ├─ LaunchImage@2x.png
│  │  │  │  │     ├─ LaunchImage@3x.png
│  │  │  │  │     └─ README.md
│  │  │  │  ├─ Base.lproj
│  │  │  │  │  ├─ LaunchScreen.storyboard
│  │  │  │  │  └─ Main.storyboard
│  │  │  │  ├─ Info.plist
│  │  │  │  └─ Runner-Bridging-Header.h
│  │  │  ├─ Runner.xcodeproj
│  │  │  │  ├─ project.pbxproj
│  │  │  │  ├─ project.xcworkspace
│  │  │  │  │  ├─ contents.xcworkspacedata
│  │  │  │  │  └─ xcshareddata
│  │  │  │  │     ├─ IDEWorkspaceChecks.plist
│  │  │  │  │     └─ WorkspaceSettings.xcsettings
│  │  │  │  └─ xcshareddata
│  │  │  │     └─ xcschemes
│  │  │  │        └─ Runner.xcscheme
│  │  │  └─ Runner.xcworkspace
│  │  │     ├─ contents.xcworkspacedata
│  │  │     └─ xcshareddata
│  │  │        ├─ IDEWorkspaceChecks.plist
│  │  │        └─ WorkspaceSettings.xcsettings
│  │  ├─ lib
│  │  │  ├─ custom_sidebar_drawer.dart
│  │  │  ├─ home_screen.dart
│  │  │  ├─ main.dart
│  │  │  └─ splash_page.dart
│  │  ├─ pubspec.lock
│  │  ├─ pubspec.yaml
│  │  └─ test
│  │     └─ widget_test.dart
│  ├─ initNavDrawer.kt
│  ├─ recyclerViewAdapter.kt
│  ├─ rvItemAnimator.kt
│  └─ shareBitmapImage.kt
├─ Assembly Language
│  ├─ BubbleSort.asm
│  ├─ Merge Sort .asm
│  └─ Overview
├─ Competitive programming template
│  ├─ template.cpp
│  └─ template.kt
├─ Create Heap Using STL Vector.txt
├─ Data Structures
│  ├─ Array
│  │  └─ Equillibrium Point.cpp
│  ├─ Heap
│  │  ├─ Create Heap Using STL Vector.txt
│  │  ├─ Heap Sort.txt
│  │  └─ Heapify_Faster_Method_to_CreateHeap_C++.txt
│  ├─ LinkedList
│  │  ├─ Check if a loop exists in SLL.cpp
│  │  ├─ Delete a Linked List
│  │  ├─ Find Middle Node of SLL.cpp
│  │  ├─ Find kth node from last of a SLL.cpp
│  │  ├─ LinkedLists.c
│  │  └─ Reverse a SLL.cpp
│  ├─ Merge Sort
│  │  └─ Merge Sort.cpp
│  ├─ Overview.txt
│  └─ Stack
│     ├─ Stack.c
│     └─ StockSpan.cpp
├─ Heap Sort.txt
├─ Heapify_Faster_Method_to_CreateHeap_C++.txt
├─ Machine Learning
│  ├─ .DS_Store
│  ├─ Face_Recognition
│  │  ├─ .DS_Store
│  │  ├─ assets
│  │  │  ├─ face.jpg
│  │  │  └─ haarcascade_frontalface_default.xml
│  │  └─ model
│  │     └─ Face_detection_using_OpenCV.ipynb
│  ├─ Overview.txt
│  └─ Super-Mario
│     ├─ README.md
│     ├─ __pycache__
│     │  ├─ mario.cpython-38.pyc
│     │  ├─ metriclogger.cpython-38.pyc
│     │  └─ wrapper.cpython-38.pyc
│     ├─ mario.py
│     ├─ metriclogger.py
│     ├─ play.py
│     ├─ src
│     │  ├─ proj_folder
│     │  ├─ stage-2.png
│     │  └─ stage1-4.png
│     ├─ super mario.ipynb
│     └─ wrapper.py
├─ Python
│  ├─ Arnold Cat Map.ipynb
│  ├─ Blur Algorithm.ipynb
│  ├─ CNN Architectures
│  │  ├─ Alexnet in Pytorch.ipynb
│  │  ├─ Alexnet_architecture.png
│  │  ├─ CIFAR-10 Pytorch.ipynb
│  │  ├─ CNN Pytorch.ipynb
│  │  ├─ GoogLeNet PyTorch.ipynb
│  │  ├─ GoogLeNet_architecture.png
│  │  ├─ LeNet Pytorch.ipynb
│  │  ├─ LeNet_architecture.png
│  │  ├─ MNIST Pytorch.ipynb
│  │  ├─ NIN_architecture.png
│  │  ├─ NiN PyTorch.ipynb
│  │  ├─ Pretrained Pytorch.ipynb
│  │  ├─ ResNet_VGG_architecture.png
│  │  ├─ Resnet in PyTorch.ipynb
│  │  └─ VGG in PyTorch.ipynb
│  ├─ Ensemble learning methods
│  │  ├─ .ipynb_checkpoints
│  │  │  ├─ AdaBoost-checkpoint.ipynb
│  │  │  └─ Random_Forest-checkpoint.ipynb
│  │  ├─ AdaBoost.ipynb
│  │  └─ Random_Forest.ipynb
│  ├─ PIL Scramble Image.ipynb
│  └─ Video_Scrambler.ipynb
├─ README.md
├─ Tower of Hanoi Recursion.txt
└─ Web development
   ├─ JS
   │  └─ asyncawait.js
   └─ Overview.txt

Project Admin 👩‍💻

✨ Special Thanks To Contributors ✨