find_shortest_sequences.h 318 B

123456789101112131415
  1. #ifndef FIND_SHORTEST_SEQUENCES_H
  2. #define FIND_SHORTEST_SEQUENCES_H
  3. #include <string_view>
  4. #include <vector>
  5. #include <functional>
  6. #include <optional>
  7. #include <string>
  8. std::vector<std::string> FindShortestSequences(
  9. std::string_view code,
  10. std::function<std::optional<char>(char, char)> apply_cmd);
  11. #endif