$ docker
This file contains 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; | |
int n,e,m; //n-> number of nodes, e->number of edges, m->number of allowed colors | |
bool adj[100][100]; //adjacent matrix to store the edges | |
int color[100]; //matrix to store colors | |
//function to print the color array | |
void print () |
This file contains 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
aardvark | |
aardwolf | |
Aaronite | |
abaction | |
abaculus | |
abaissed | |
abampere | |
Abarambo | |
abasedly | |
abatable |
Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
Commit type | Emoji |
---|---|
Initial commit | 🎉 :tada: |
Version tag | 🔖 :bookmark: |
New feature | ✨ :sparkles: |
Bugfix | 🐛 :bug: |
When contributing to this repository, please first discuss the change you wish to make via issue, email, or any other method with the owners of this repository before making a change.
Please note we have a code of conduct, please follow it in all your interactions with the project.
- Ensure any install or build dependencies are removed before the end of the layer when doing a
This file contains 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
let data1 = 'Hello World!'; | |
let data2 = 'Hello Universe!'; | |
let http = new XMLHttpRequest(); | |
http.open( 'POST', 'post.php' ); | |
http.setRequestHeader( 'Content-Type', 'application/x-www-form-urlencoded' ); | |
http.send( 'data1=' + data1 + '&data2=' + data2 ); | |
http.onreadystatechange = function() | |
{ | |
if ( http.readyState == 4 && http.status == 200 ) | |
{ |