আমি নিশ্চিত না যে আমি প্রথম বোনাসটি সঠিকভাবে বুঝতে পেরেছি তাই আমি এটিকে সম্বোধন করছি না।
এটি স্পষ্টতই অ-প্রতিযোগিতামূলক, যেহেতু ভাষা চ্যালেঞ্জের চেয়ে অনেক বেশি সাম্প্রতিক, তবে অন্য কোনও উত্তর না থাকায় আমি নিশ্চিত নই যে এটি পুরোপুরি গুরুত্বপূর্ণ matters
প্রধান শিকারী:
@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
ভবিষ্যদ্বাণী ১১: একটি কক্ষ মুদ্রণ করুন
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