/// , 35 byte
/I///,*/+,//+/I//**,/,A//*/A//,//,I
Hãy thử trực tuyến!
Đưa đầu vào trong unary bằng ký hiệu *
và đầu ra trong unary sử dụng ký hiệu A
. Điều này được phép cho một số ngôn ngữ cụ thể, bao gồm /// ( meta )
Vì không có cách nào để nhận đầu vào trong ///, nên đầu vào phải được mã hóa cứng:
/I/«put input here»//,*/+,//+/I//**,/,A//*/A//,//,I
cho đầu vào = 4.
Giải thích: (trước khi đọc, bạn cần phải biết rằng cú pháp duy nhất của ///
là /pattern/replacement/
, mà thay thế mỗi sự xuất hiện của pattern
bằng replacement
; và \
cho thoát; nhân vật khác được in đến đầu ra)
Dành cho n=4
:
/I/****//,*/+,//+/I//**,/,A//*/A//,//,I Start program.
/I/****/ Replace all `I` in the program by the input.
/,*/+,//+/****//**,/,A//*/A//,//,**** Remaining part of the program.
/,*/+,/ Use the `,` as a scanner, scan through `*` after it and convert to `+`.
/+/****//**,/,A//*/A//,//++++, Note that only `*` in the second group is affected.
/+/****/ Replace all `+` (which is just created) by `n` asterisks (from the first `I` group)
/**,/,A//*/A//,//****************, Now at the last of the program before the `,` there are `n²` asterisks.
/**,/,A/ Scan the `,` to the left to perform division by 2:
replace each `**` by a `A` as the scanner `,` pass through.
/*/A//,//,AAAAAAAA Remaining program.
/*/A/ If there is any `*` remaining (if `n²` is odd), replace it with `A`.
/,// Remove the scanner `,`.
AAAAAAAA Output the result.