Advertisement
am1x

IOopt001.cxx

Jan 9th, 2024
765
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.30 KB | Fixit | 0 0
  1. #pragma GCC optimize("O3", "unroll-loops")
  2.  
  3. auto init = []()
  4. {
  5.     ios::sync_with_stdio(0);
  6.     cin.tie(0);
  7.     cout.tie(0);
  8.     return 'c';
  9. }();
  10.  
  11. https://leetcode.com/problems/leaf-similar-trees/solutions/4532722/c-dfs-recursion-vs-iteration-0ms-beats100/
  12. https://codeforces.com/blog/entry/10
Tags: io
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement