Skip to content

Instantly share code, notes, and snippets.

View shivam-k's full-sized avatar

Shivam Kumar shivam-k

  • IIT Kharagpur
  • Kharagpur, West Bengal, India
View GitHub Profile
#include<iostream>
using namespace std;
int ary[10][10],completed[10],n,cost=0;
void takeInput()
{
int i,j;
'use strict';
const {WebhookClient} = require('dialogflow-fulfillment');
const {
Permission,
dialogflow,
Image,
BasicCard,
BrowseCarousel,
BrowseCarouselItem,
@shivam-k
shivam-k / index.js
Last active January 2, 2019 16:55
Dialogflow fulfillment
'use strict';
const http = require('https');
const functions = require('firebase-functions');
const { WebhookClient, Card, Suggestion } = require('dialogflow-fulfillment');
const {
Permission,
dialogflow,
Image,
BasicCard,
@shivam-k
shivam-k / test.md
Created April 18, 2017 21:00
Table side by side in MD
Table 1 Table 2
@shivam-k
shivam-k / Leading_Zero_inC.c
Created April 12, 2017 19:00
print numbers with leading zeros in C
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include <string.h>
int main(void)
{
int T;
scanf("%d", &T);
while(T--)