From 07bb82245320a6afa0a106a29ecd1627741800fb Mon Sep 17 00:00:00 2001 From: MysticalX21 <84481183+MysticalX21@users.noreply.github.com> Date: Tue, 15 Aug 2023 12:00:55 -0400 Subject: [PATCH] Add unordered checker as an option --- judge/models/problem_data.py | 1 + 1 file changed, 1 insertion(+) diff --git a/judge/models/problem_data.py b/judge/models/problem_data.py index a00016a510..352a78b90e 100644 --- a/judge/models/problem_data.py +++ b/judge/models/problem_data.py @@ -26,6 +26,7 @@ def problem_directory_file(data, filename): ('floatsrel', _('Floats (relative)')), ('rstripped', _('Non-trailing spaces')), ('sorted', _('Sorted')), + ('unordered', _('Unordered')), ('identical', _('Byte identical')), ('linecount', _('Line-by-line')), )