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 <bits/stdc++.h> | |
using namespace std; | |
#define PI acos(-1.0) | |
#define MOD 1000000007 | |
template<class T1, class T2> | |
using umap = unordered_map<T1, T2>; | |
template<class T> | |
using uset = unordered_set<T>; |
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
use actix::prelude::*; | |
pub struct Msg { | |
} | |
impl Message for Msg { | |
type Result = (); | |
} | |
pub struct AsyncActorThatOnlySpewsState { |
OlderNewer