Желе , 7 6 байт (легкий)
IAṢ⁼J$
Попробуйте онлайн!
IAṢ⁼J$ jolly function on N:
IAṢ the increment list: get all the Increments, take their Absolute values, and Ṣort them
⁼ compare that to...
J$ range from 1 to len(N) -- this has an extra number, but that's fine because...
...the increment list is one shorter, and ⁼ will only compare that many values
Принимает ввод в виде разделенных запятыми чисел в первом аргументе. Возвращает 1, если последовательность веселая, и 0, если это не так!
7-байтовое решение:
LRṖḟIA$
Попробуйте онлайн!
Принимает ввод в виде разделенных запятыми чисел в первом аргументе. Ничего не возвращает, если список представляет собой последовательность веселых перемычек, и что-то если это не так.
Добавление этой строки позволяет работать со сложными спецификациями:
Желе , 27 22 байта (сложно, обратная связь приветствуется!)
ɠḲVIAṢ⁼J$ị“¢⁼D“¡KṀȥƘạ»
Попробуйте онлайн!
ɠḲVIAṢ⁼J$ị“¢⁼D“¡KṀȥƘạ»
ɠḲV read a line, split on spaces and eValuate the numbers
IAṢ⁼J$ jolly function: see above!
ị ịndex the result into (remember Jelly is one-indexed, so 0 wraps around to the back):
“¢⁼D“ "Jolly" compressed if true,
¡KṀȥƘạ» or, "Not jolly" compressed if false!
27-байтовое (сложное) решение:
LRṖḟIA$
ɠḲVÇ“¡KṀȥƘạ»“¢⁼D»L?
Попробуйте онлайн!
Принимает разделенные пробелом числа на stdin
и выдает «Jolly» или «Not jolly».
Объяснение:
LRṖḟIA$ jolly function:
LRP make a range (R) from 1 to the input length (L), popping off (P) the last number to make it 1 to N-1.
ḟ reverse filter: remove all the elements from that range that are members of...
IA$ the increment list: get all the increments, take their absolute values (expressed as one monad via '$').
ɠḲVÇ“¡KṀȥƘạ»“¢⁼D»L? i/o main function:
ɠḲV read a line from stdin, split it on spaces and have Python parse each number (handling negative signs)
Ç ? run the above, and use the result on the following conditional:
L? if the length of the result is truthy (non-empty):
“¡KṀȥƘạ» then, return Jelly compressed string "Not jolly",
“¢⁼D» else, return Jelly compressed string "Jolly".
Любая обратная связь высоко ценится!