Skip to content

Instantly share code, notes, and snippets.

View ShaonBhattaShuvo's full-sized avatar

Shaon Bhatta Shuvo ShaonBhattaShuvo

View GitHub Profile
@ShaonBhattaShuvo
ShaonBhattaShuvo / cnn-implementation.ipynb
Last active November 25, 2022 19:22
cnn-implementation.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@ShaonBhattaShuvo
ShaonBhattaShuvo / basic_deep_learning_model_implementation.ipynb
Last active May 30, 2023 20:55
deep_learning_model_implementation.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@ShaonBhattaShuvo
ShaonBhattaShuvo / CoinChangeGreedy
Created October 21, 2017 09:36
Coin Change using Greedy Approach
import java.util.Scanner;
/**
*
* @author Shaon Bhatta Shuvo
*/
public class CoinChangeGreedy {
public static void main(String[] args){
Scanner input = new Scanner(System.in);
@ShaonBhattaShuvo
ShaonBhattaShuvo / CoinChangeUsingDynamicProgramming.java
Last active October 16, 2017 21:19
Coin Change Algorithm Using Dynamic Programming
import java.util.Scanner;
/**
*
* @author Shaon Bhatta Shuvo
*/
public class CoinChangeDP {
public static void main(String[] args){
Scanner input = new Scanner(System.in);
int n, amount;
@ShaonBhattaShuvo
ShaonBhattaShuvo / quicksort.java
Created July 17, 2017 20:37
QuickSort using Java
import java.util.Scanner;
/**
*
* @author SHUVO
*/
public class QuickSort {
public static void main(String args[]){
Scanner input = new Scanner(System.in);
int n;
@ShaonBhattaShuvo
ShaonBhattaShuvo / mergesort.java
Last active July 17, 2017 20:32
MergeSort using Java
package algorithm;
import java.util.Scanner;
/**
*
* @author SHUVO
*/
public class MergeSort {