This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
#include<bits/stdc++.h> | |
using namespace std; | |
/* Link list node */ | |
struct node *reverse (struct node *head, int k); | |
struct node | |
{ | |
int data; | |
struct node* next; | |
}*head; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include<stdlib.h> | |
using namespace std; | |
struct node{ | |
int key; | |
struct node *right,*left; | |
}; | |
struct node* newNode(int item){ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"//1": "describes your app and its dependencies", | |
"//2": "https://docs.npmjs.com/files/package.json", | |
"//3": "updating this file will download and update your packages", | |
"name": "my-glitch-app", | |
"version": "0.0.1", | |
"description": "What am I about?", | |
"scripts": { | |
"start": "node server.js" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"sample":[ | |
{ | |
"description":"Lady with a red umbrella", | |
"image-url":"https://i.imgur.com/pwpWaWu.jpg" | |
}, | |
{ | |
"description":"Flowers and some fruits", | |
"image-url":"https://i.imgur.com/KIPtISY.jpg" | |
}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ "quotes":[ | |
"Life isn’t about getting and having, it’s about giving and being.", | |
"Whatever the mind of man can conceive and believe, it can achieve.", | |
"Strive not to be a success, but rather to be of value.", | |
"Two roads diverged in a wood, and I—I took the one less traveled by, And that has made all the difference.", | |
"I attribute my success to this: I never gave or took any excuse.", | |
"You miss 100% of the shots you don’t take.", | |
"I’ve missed more than 9000 shots in my career. I’ve lost almost 300 games. 26 times I’ve been trusted to take the game winning shot and missed. I’ve failed over and over and over again in my life. And that is why I succeed.", | |
"The most difficult thing is the decision to act, the rest is merely tenacity.", | |
"Every strike brings me closer to the next home run.", |