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
#define general_methods(container) \ | |
explicit container ({[size_type n, {const value_type& val = value_type()}, {charT c}]}, \ | |
{const key_compare& comp = key_compare()}, \ | |
const allocator_type& alloc = allocator_type()); \ | |
template <class InputIterator> \ | |
container (InputIterator first, InputIterator last, {const key_compare& comp = key_compare()}, \ | |
const allocator_type& alloc = allocator_type()); \ | |
container (const container& x); \ | |
container& operator= (const container& x); \ | |
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 <iostream> | |
#include <map> | |
using namespace std; | |
namespace Mygod | |
{ | |
class ACAutomaton | |
{ | |
private: |
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
/* Here's the script that I used to fetch ALL the goomods from goofans.com. Enjoy. * | |
* Copyleft © 2014 Mygod (studio.mygod.tk) */ | |
using System; | |
using System.IO; | |
using System.Text; | |
using System.Security.Cryptography; | |
using System.Windows.Forms; | |
using System.Xml.Linq; | |
using System.Text.RegularExpressions; |
NewerOlder