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
#!/usr/bin/python3 | |
import sys | |
import re | |
import json | |
def main(): | |
with open(sys.argv[1], encoding='utf-8') as f: | |
s = f.read() |
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 <array> | |
#include <cassert> | |
#include <catch2/catch_test_macros.hpp> | |
#include <cstddef> | |
#include <iterator> | |
#include <memory> | |
#include <type_traits> | |
// Facade for input and bidirectional iterator, but can be expanded to any type | |
// of iterator |