http://www.jitbit.com/news/181-jitbits-sql-interview-questions/
employees
- employee_id
- department_id
- boss_id
- name
http://www.jitbit.com/news/181-jitbits-sql-interview-questions/
employees
// 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]; |
# 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: | |
# |