Skip to content

Instantly share code, notes, and snippets.

View tabvn's full-sized avatar

Toan tabvn

  • Danang, Vietnam
View GitHub Profile
# Write your query or mutation here
query me {
me {
id
firstName
lastName
email
created
updated
roles
@tabvn
tabvn / g
Created July 10, 2019 10:40
g
# Write your query or mutation here
query me {
me {
id
firstName
lastName
email
created
updated
}
#include <iostream>
#include <string>
#include <vector>
using namespace std;
class Author {
private:
string name, id, email;
#include <iostream>
#include <string>
#include <vector>
using namespace std;
class Author {
private:
string name, id, email;
#include <iostream>
#include <string>
#include <vector>
using namespace std;
class Device {
private:
string code;
#include <iostream>
using namespace std;
template <class T>
class Fraction {
private:
T tu,mau;
#include <iostream>
#include <string>
#include <vector>
using namespace std;
class Person{
private:
string name;
#include <iostream>
using namespace std;
/* 1
2
3
4
*/
#include <iostream>
#include <time.h>
using namespace std;
int main()
{
const int LEN = 99;
int x;
#include <iostream>
using namespace std;
struct Node{
int x;
Node *right;
Node *left;
Node(int a){