Balanced brackets: Difference between revisions

m
imported>Arakov
imported>Arakov
Line 2,858:
=={{header|Elena}}==
ELENA 6.x :
<syntaxhighlight lang="elena">import// system'routines;Generate a string with N opening brackets ("[") and N closing brackets ("]"), in some arbitrary order.
// Determine whether the generated string is balanced; that is, whether it consists entirely of pairs of opening/closing brackets (in that order),
// none of which mis-nest.
 
import system'routines;
import extensions;
import extensions'text;
 
// --- RandomBrackets ---
 
randomBrackets(len)
Line 2,897 ⟶ 2,899:
public program()
{
for(int len := 0,; len < 9,; len += 1)
{
var str := randomBrackets(len);
Anonymous user