Skip to content

Instantly share code, notes, and snippets.

View m-umarali's full-sized avatar
👨‍💻
Focusing

MUHAMMAD UMAR m-umarali

👨‍💻
Focusing
View GitHub Profile
@m-umarali
m-umarali / 1 - sql_interview_questions.md
Created September 27, 2019 07:41 — forked from mjhea0/1 - sql_interview_questions.md
Jitbit's SQL interview questions
@m-umarali
m-umarali / minimum_initial_points.cpp
Created August 10, 2019 15:42 — forked from nups/minimum_initial_points.cpp
You are given a matrix nxm filled with integers. There is a robot which has to travel from the cell (1,1) to cell (n,m) and the robot can move only one cell to the right or downwards. The robot requires strength to travel from one cell to another. He can only move forward if his strength is positive. When he moves to a cell , the cell value is a…
// C++ program to find minimum initial points to reach destination
#include<bits/stdc++.h>
#define R 3
#define C 3
using namespace std;
int minInitialPoints(int points[][C])
{
int m=R,n=C;
int dp[m][n];
@m-umarali
m-umarali / yoon-kim-cnn.py
Created May 11, 2019 10:48 — forked from jeperez/yoon-kim-cnn.py
yoon-kim-cnn.py
# coding: utf-8
# ## CNN for Text Classification
# Implementation of *Convolutional Neural Networks for Sentence Classification* (Yoon Kim, 2014).
#
# In his [paper](https://arxiv.org/abs/1408.5882), Yoon Kim proposed several techniques to achieve good text classification accuracy with minimal hyper-parameter tuning.
#
# This notebook consist of 4 main sections:
#