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 <functional> | |
| using namespace std; | |
| using namespace std::placeholders; | |
| int add(int a, int b) { | |
| return a+b; | |
| } |
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 <memory> | |
| using namespace std; | |
| class Foo { | |
| public: | |
| Foo(int a, int b) { | |
| this->a = a; | |
| this->b = b; |
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
| import csv | |
| import os | |
| import random | |
| from itertools import chain | |
| from graphviz import Graph | |
| def local_point_crawl(points, point_count, connections, connection_count): | |
| dot = Graph(comment='Area Map') |
OlderNewer