젤리 , 24 22 19 18 바이트
-2 더 이상 빈 목록을 처리 할 필요가 없기 때문에
-1 j@
을 연결에서 연결로 전환 ;
합니다. 누락 된 항목은 사용 된 방법에 대해 중간에 발생 하지 않아도 됩니다. )
-2로 전환 P¬aSH
하는 oSH
우리 평탄화 이후 (OK하면 절반 두 결과가 없습니다 1
이다 0.5
) 어쨌든 필터링되는, 복수의 동일한 결과를 갖는 더 중 사용 된 방법에 영향을 미치지
-1 씨 Xcoder 덕분 (0 인덱스 입력 가능)
d3ZIỊoSH;µƝFf9Ḷ¤Q⁼
합법적 인 경우 정수 목록을 가져 와서 [0,8]
진실한 값 ( 1
)을 반환하고 그렇지 않은 경우 거짓 값 ( )을 반환하는 모나드 링크 0
.
온라인으로 사용해보십시오! 또는 테스트 스위트를 참조하십시오 .
어떻게?
입력 목록에서 인접한 0 개의 인덱스 노드 쌍을 살펴 봅니다. 2 개 중 3 개의 정수 나누기가 2 씩 다르면 상단과 하단 행에 있고, 2 개 중 3 개에 의한 모듈로가 2 씩 다르면 왼쪽 및 오른쪽 열에 있습니다. 이러한 쌍의 합을 2로 나눈 값은 3 노드 라인의 0 인덱스 중간 노드이거나 정수가 아닌 값이므로 먼저 0 인덱스 쌍 앞에 삽입 된 다음 가짜 노드 ( 0.5
또는3.5
)가 제거되고 결과 목록 목록이 평평해진 다음 중복 제거되어 (주문 유지, 고유 항목을 생성하기 위해) 입력과 비교됩니다. 법적으로 스 와이프하는 경우이 모든 것이 불법이 아닌 결과가됩니다 누락 된 중간 노드를 추가하거나 중복 노드를 제거합니다 (인접 쌍이 없기 때문에 길이가 1 인 입력 목록에는 특별한 케이싱이 필요하지 않습니다).
d3ZIỊoSH;µƝFf9Ḷ¤Q⁼ - left input is a list of integers e.g. [3,4,7,1,2,8,3]
µƝ - perform the chain to the left for adjacent pairs:
- e.g. for [a,b] in: [3,4] [4,7] [7,1] [1,2] [2,8] [8,3]
d3 - divmod by 3 [[1,0],[1,1]] [[1,1],[2,1]] [[2,1],[0,1]] [[0,1],[0,2]] [[0,2],[2,2]] [[2,2],[1,0]]
Z - transpose [[1,1],[0,1]] [[1,2],[1,1]] [[2,0],[1,1]] [[0,0],[1,2]] [[0,2],[2,2]] [[2,1],[2,0]]
I - differences [0,1] [1,0] [-2,0] [0,1] [2,0] [-1,-2]
Ị - abs(v)<=1 [1,1] [1,1] [0,1] [1,1] [0,1] [1,0]
S - sum (of [a,b]) 7 11 8 3 10 11
o - OR (vectorises) [1,1] [1,1] [8,1] [1,1] [10,1] [1,11]
H - halve (vectorises) [0.5,0.5] [0.5,0.5] [4,0.5] [0.5,0.5] [5,0.5] [0.5,5.5]
; - concatenate [0.5,0.5,3,4] [0.5,0.5,4,7] [4,0.5,7,1] [0.5,0.5,1,2] [5,0.5,2,8] [0.5,5.5,8,3]
F - flatten [0.5,0.5,3,4, 0.5,0.5,4,7, 4,0.5,7,1, 0.5,0.5,1,2, 5,0.5,2,8, 0.5,5.5,8,3]
¤ - nilad followed by link(s) as a nilad:
9 - literal nine
Ḷ - lowered range = [0,1,2,3,4,5,6,7,8]
f - filter keep [ 3,4, 4,7, 4, 7,1, 1,2, 5, 2,8, ,8,3]
Q - deduplicate [3,4,7,1,2,5,8]
⁼ - equal to the input? e.g. 0 (here because 5 was introduced AND because 3 was removed from the right)
이전 방법
젤리 , 36 35 바이트
9s3;Z$;“Æ7a‘DZ¤;U$;©0m€2iị®oµƝFQ⁼ȧȦ
온라인으로 사용해보십시오! 또는 테스트 스위트를 참조하십시오 .
어떻게?
위와 유사하지만 모든 3 노드 라인 가능성을 구성하고 조회를 수행합니다 (중간 노드의 합계를 테스트하고 절반으로 줄이기 위해 divmod를 사용하는지 확인하는 대신).
먼저 3 노드 라인 목록 구성 :
9s3;Z$;“Æ7a‘DZ¤;U$;©0
9s3 - nine (implicit range) split into threes = [[1,2,3],[4,5,6],[7,8,9]]
$ - last two links as a monad:
Z - transpose = [[1,4,7],[2,5,8],[6,7,9]]
; - concatenate = [[1,2,3],[4,5,6],[7,8,9],[1,4,7],[2,5,8],[3,6,9]]
¤ - nilad followed by link(s) as a nilad:
“Æ7a‘ - code-page index list = [13,55,97]
D - decimal (vectorises) = [[1,3],[5,5],[9,7]]
Z - transpose = [[1,5,9],[3,5,7]]
; - concatenate = [[1,2,3],[4,5,6],[7,8,9],[1,4,7],[2,5,8],[3,6,9],[1,5,9],[3,5,7]]
$ - last two links as a monad:
U - upend = [[3,2,1],[6,5,4],[9,8,7],[7,4,1],[8,5,2],[9,6,3],[9,5,1],[7,5,3]]
; - concatenate = [[1,2,3],[4,5,6],[7,8,9],[1,4,7],[2,5,8],[3,6,9],[1,5,9],[3,5,7],[3,2,1],[6,5,4],[9,8,7],[7,4,1],[8,5,2],[9,6,3],[9,5,1],[7,5,3]]
0 - literal zero (to cater for non-matches in the main link since ị, index into, is 1-based and modular the 0th index is the rightmost)
; - concatenate = [[1,2,3],[4,5,6],[7,8,9],[1,4,7],[2,5,8],[3,6,9],[1,5,9],[3,5,7],[3,2,1],[6,5,4],[9,8,7],[7,4,1],[8,5,2],[9,6,3],[9,5,1],[7,5,3],0]
© - copy the result to the register
이제 의사 결정 :
...m€2iị®oµƝFQ⁼ȧȦ - left input is a list of integers e.g. [4,5,8,2,3,9,4]
µƝ - perform the chain to the left for adjacent pairs:
- i.e. for [a,b] in [[4,5],[5,8],[8,2],[2,3],[3,9],[9,4]]
... - perform the code described above = [[1,2,3],[4,5,6],[7,8,9],[1,4,7],[2,5,8],[3,6,9],[1,5,9],[3,5,7],[3,2,1],[6,5,4],[9,8,7],[7,4,1],[8,5,2],[9,6,3],[9,5,1],[7,5,3],0]
m€2 - modulo-2 slice €ach = [[1,3],[4,6],[3,9],[1,7],[2,8],[6,9],[1,9],[3,7],[3,1],[6,4],[9,7],[7,1],[8,2],[9,3],[9,1],[7,3],[0]]
i - index of [a,b] in that (or 0 if not there) e.g. [0,0,13,0,6,0]
® - recall from register = [[1,2,3],[4,5,6],[7,8,9],[1,4,7],[2,5,8],[3,6,9],[1,5,9],[3,5,7],[3,2,1],[6,5,4],[9,8,7],[7,4,1],[8,5,2],[9,6,3],[9,5,1],[7,5,3],0]
ị - index into (1-based & modular) e.g. [0,0,[8,5,2],0,[3,6,9],0]
o - OR [a,b] e.g. [[4,5],[5,8],[8,5,2],[2,3],[3,6,9],[9,4]]
F - flatten e.g. [4,5,5,8,8,5,2,2,3,3,6,9,9,4]
Q - deduplicate e.g. [4,5,8,2,3,6,9]
⁼ - equal to the input? e.g. 0 (here because 6 was introduced AND because 4 was removed from the right)
Ȧ - any and all? (0 if input is empty [or contains a falsey value when flattened - no such input], 1 otherwise)
ȧ - AND (to force an empty input to evaluate as 1 AND 0 = 0)