पर्ल, 32 = 31 + 1 या 73 = 72 + 1 (न्यूनतम कोष्ठक)
अतिरिक्त अनावश्यक कोष्ठक के साथ 32 = 31 + 1:
संपादन:
- ठीक करें, कोष्ठक अब साथ गिना जाता है
y///
।
- अनावश्यक चर
$a
हटाया गया।
$_="("x y/)//.s|$|")"x y/(//|er
इसका उपयोग रन-टाइम स्विच -p
(+1 बाइट) के साथ किया जाता है ।
परीक्षण फ़ाइल input.txt
:
This line has no parentheses
alert(Math.max(1, 2
1+1)*2).toString()
function() { alert('Hello, World!'); })(
(foo))(bar
)))(((
((
))
कमांड लाइन:
perl -p script.pl <input.txt
या
perl -pe '$_="("x y/)//.s|$|")"x y/(//|er' <input.txt
परिणाम:
This line has no parentheses
alert(Math.max(1, 2))
(((1+1)*2).toString())
(((function() { alert('Hello, World!'); })()))
(((foo))(bar))
((()))((()))
(())
(())
Ungolfed:
एल्गोरिथ्म सरल है, बस प्रत्येक पाया कोष्ठक के लिए समकक्ष जोड़ें।
$_ = # $_ is provided as input by switch `-p` and
# it is printed afterwards as output.
# y/X// is used to count the character 'X' in $_
'(' x y/)// # add opening parentheses for each closing parentheses
. s|$|')' x y/(//|er # go right before the end of line and insert
# closing parentheses for each opening parentheses
# in the original string
73 = 72 + 1: न्यूनतम संख्या में कोष्ठक जोड़ना
यह स्क्रिप्ट संतुलित आउटपुट प्राप्त करने के लिए केवल न्यूनतम संख्या में कोष्ठक जोड़ता है ।
$a=y/()//cdr;1while$a=~s/\(\)//g;$_=$a=~y/)(/(/dr.$_;s|$|$a=~y/()/)/dr|e
इसका उपयोग रन-टाइम स्विच -p
(+1 बाइट) के साथ किया जाता है ।
perl -pe "$a=y/()//cdr;1while$a=~s/\(\)//g;$_=$a=~y/)(/(/dr.$_;s|$|$a=~y/()/)/dr|e" <input.txt
परिणाम:
This line has no parentheses
alert(Math.max(1, 2))
((1+1)*2).toString()
(function() { alert('Hello, World!'); })()
((foo))(bar)
((()))((()))
(())
(())
Ungolfed:
$a = y/()//cdr; # filter parentheses and store in $a
1 while $a =~ s/\(\)//g; # remove matching parentheses
$_ = $a =~ y/)(/(/dr . $_; # add missing opening parentheses at start of string
s|$|$a=~y/()/)/dr|e # insert missing closing parentheses at end of string
81 = 80 + 1: कोष्ठक की न्यूनतम संख्या को जोड़ना
यह संतुलित आउटपुट के लिए न्यूनतम संख्या में कोष्ठक जोड़ने की एक पुरानी विधि है।
my($l,$r);s/[()]/($&eq")"&&($r&&$r--||++$l))||$r++/ger;$_="("x$l.$_;s/$/")"x$r/e
यह पर्ल 5.14 (गैर-विनाशकारी प्रतिस्थापन मॉडिफायर के कारण) और रन-टाइम स्विच -p
(+1 बाइट) का उपयोग करता है।
perl -p script.pl <input.txt
परिणाम:
This line has no parentheses
alert(Math.max(1, 2))
((1+1)*2).toString()
(function() { alert('Hello, World!'); })()
((foo))(bar)
((()))((()))
(())
(())
Ungolfed:
# The while loop is added by option "-p".
LINE:
while (<>) {
# $_ contains the current line
my ($l, $r); # initializes $l and $r (to undef/kind of indirect 0)
# Modifiers for the following substitution of $_:
# /g: process all parentheses
# /e: evaluate code
# /r: does not change the original input string $_ (Perl 5.14)
s/[()]/
# $& contains the matched parentheses
# $r is a balance level counter; at the end $r contains
# the number of needed closing parentheses
# $l is the number of needed opening parentheses;
# if $r would go negative, then an opening parentheses
# is missing and $l is increases and $r remains zero.
(
$& eq ")" && # case ")"
($r && $r-- # close a parentheses group and update balance counter
|| ++$l) # or update $l if an opening parentheses is needed
)
|| $r++ # case "(": increase balance counter
/ger;
$_ = "(" x $l . $_; # add opening parentheses at the begin of line
s/$/")" x $r/e # add closing parentheses before the line end
# the remainder is added by run-time switch "-p"
} continue {
print or die "-p destination: $!\n";
}
()
कोष्ठक, या ऐसा अन्य कोष्ठक{}
,[]
,<>
, आदि की जरूरत है और साथ ही विचार किया जाना?