मुझे यकीन नहीं है कि मैं पहले बोनस को सही ढंग से समझता हूं इसलिए मैं इसे संबोधित नहीं कर रहा हूं।
यह स्पष्ट रूप से गैर-प्रतिस्पर्धात्मक है क्योंकि भाषा चुनौती की तुलना में बहुत अधिक हाल की है, हालांकि चूंकि कोई अन्य उत्तर नहीं हैं मुझे यकीन नहीं है कि यह पूरी तरह से महत्वपूर्ण है ...
मुख्य विधेय:
@n Split the input on line breaks
:1a:"-"x Transform into a list of lists, each sublist contains a line's values
:7fF Transform so that cells are [Value:X:Y]
:3a All values on lines must be different
$\:3a All values on columns must be different (by transposition)
@3:4a, All 3*3 block values must be different
Fc~bCh[0:0:0]gO, Append a fake cell [0:0:0]
Co~c[V:O:T] Sort the board, the blank cells V will be those before O ([0:0:0])
h:F:6f Find all subsets of blank cells with specific values for which
the board has only one solution
:10ao Sort the subsets by lengths
:ba Discard the lengths
(
h:11a Print the first subset = an answer
; Or (board is already fully determined)
! Terminate
)
; Or (Some values don't respect the constraints)
"!!"w! Print "!!" and terminate
विधेय 1: सभी "निकालें |
" तर्ज पर, को बदलने ---+---+---
में -
के बाद उन्हें हटाने के लिए
h"-". If the first char is "-", then Output is "-"
| Or
:"|"x Remove all occurences of "|" from the input
:2f. Output is the result of all outputs of predicate 2 on the filtered string
2 को समर्पित करें: एक चार्जर को एक पूर्णांक में बदलें, या यदि 1 और 9 के बीच एक चर के लिए रिक्त हो।
e Take a char of the input string
(
~m["0123456789":.] Output is the index of the char in "0123456789"
` Discard the choice point caused by the ;
; Or
0<.<=9 Output is an integer between 1 and 9
)
3 की भविष्यवाणी करें: प्रस्ताव करें कि कोशिकाओं की इनपुट सूची के सभी मूल्य अलग-अलग होने चाहिए
:ha Retrieve the head of each cell (i.e. the value) in the input
#d. Apply a constraint of distinctness to those values
4 की भविष्यवाणी करें: 3 * 3 ब्लॉक में मानों के लिए विशिष्ट अवरोध लागू करें
:@3a Split 3 lines of the board in 3 parts
z Zip them together
:ca:5a. Concatenate each element of the zip, apply predicate 5 to that
5 समर्पित करें:
:3a. Apply predicate 3 to each element of the input
6 को समर्पित करें: मानों को रिक्त कक्षों के सबसेट तक सीमित करने के लिए मान निर्दिष्ट करें, फिर उन मानों के साथ बोर्ड के लिए केवल एक समाधान है।
hs. Output is a subset of the blank cells
:=a, Assign values to those cells
?t:9ac Concatenate the values of all cells of the board
:=f Find all solved boards
l1 There is only 1 such solved board
प्रेडिकेट 7: बोर्ड को ऐसे ट्रांसफॉर्म करता है जैसे कि प्रत्येक सेल अब [V:X:Y]
केवल V
(वैल्यू) के बजाय है ।
:Im Take the Ith line of the board
:8f Transform all elements of the line using predicate 8
:[[I]]z Zip the result with [I]
:ca. Concatenate each element of the zip
प्रेडिकेट 8: एक लाइन को इस तरह से ट्रांसफॉर्म करता है जैसे कि प्रत्येक सेल अब है [V:X]
।
:Jm Take the Jth element of the line
:J. Output is [That element:J]
प्रेडिकेट 9: कोशिकाओं के मूल्यों को पुनः प्राप्त करें
:ha. Take the head of each element of the input
प्रेडिकेट 10: इसकी शुरुआत में एक सबसेट की लंबाई लागू करें
lg Put the length of the input in a list
:?c. Concatenate it with the input
11 को समर्पित करें: एक सेल प्रिंट करें
b:+a[X:Y], Increment coordinates by 1 to get X and Y
?h:Y:Xr: Build the list [X:Y:Value]
"(~d,~d):~d\n"w Format that list as "('X','Y'):'Value'\n" to STDOUT