Skip to content

Instantly share code, notes, and snippets.

@hjroh0315
Created August 10, 2022 09:28
Show Gist options
  • Select an option

  • Save hjroh0315/5d3413a47e01500cadf0feb245c80fa2 to your computer and use it in GitHub Desktop.

Select an option

Save hjroh0315/5d3413a47e01500cadf0feb245c80fa2 to your computer and use it in GitHub Desktop.
what the f
struct sizedinput
{
int sz;
template<class T>
operator T()
{
T a(sz);for(auto&k:a)cin>>k;return a;
}
};
struct input
{
template<class T>
operator T()
{
T a;cin>>a;return a;
}
sizedinput operator[](int sz){return sizedinput{sz};}
}nxt;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment