From 12afe719ce268bb10aa93a910079a44eb08999b8 Mon Sep 17 00:00:00 2001 From: MZuenni Date: Wed, 1 Mar 2023 11:36:26 +0100 Subject: removed trailing whitespaces and use more structured bindings --- string/suffixAutomaton.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'string/suffixAutomaton.cpp') diff --git a/string/suffixAutomaton.cpp b/string/suffixAutomaton.cpp index 4d05b6e..c6205da 100644 --- a/string/suffixAutomaton.cpp +++ b/string/suffixAutomaton.cpp @@ -2,7 +2,7 @@ constexpr char MIN_CHAR = 'a'; constexpr ll ALPHABET_SIZE = 26; struct SuffixAutomaton { struct State { - int length, link; + int length, link; vector next; State() : next(ALPHABET_SIZE) {} }; -- cgit v1.2.3