Skip to content

Instantly share code, notes, and snippets.

View DebashishPaul's full-sized avatar
🧍‍♂️
react life

Debashish Paul DebashishPaul

🧍‍♂️
react life
View GitHub Profile
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>HTML Bolck</title>
<link rel="stylesheet" href="css/Style.css">
</head>
<body>
#include<iostream>
using namespace std;
int main()
{
int a,b;
if (a=0 & b=0)
{
cout<<"0"<<endl;
}
#include <iostream>
using namespace std;
int main()
{
int d;
cin>>d;
if(d=1)
{
@DebashishPaul
DebashishPaul / main.cpp
Last active March 7, 2018 05:23
Sorted data structure
#include <iostream>
#include"sortedtype.h"
#include"sortedtype.cpp"
using namespace std;
int main()
{
SortedType<int> a;
//int x;
#include"binarysearchtree.h"
//#include"quetype.h"
#include <iostream>
using namespace std;
template <class ItemType>
TreeType<ItemType>::TreeType()
{
root=NULL;
}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<title>javascript</title>
<link rel="stylesheet" type="text/css" href="dev.css">
</head>
<body>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<title>javascript</title>
<link rel="stylesheet" type="text/css" href="dev.css">
</head>
<body>
.box{
height: 100px;
width: 100px;
background: lightslategrey;
margin: 20px auto;
display: block;
animation: circle 5s forwards;
}
@keyframes circle{
body {
background: #333
}
.container {
margin: 40px auto;
max-width: 600px;
}
p {
color: #fff;
}
html { height: 100%; }
body {
min-height: 100%;
display: flex;
justify-content: center;
align-items: center;
background: #EEE;
}
.flip-clock {