Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
perl に n 個の要素の配列があります。すべての要素をすべてのブール演算子 (AND、OR、NOT など) で結合して、考えられるすべての文字列を作成する必要があります。たとえば、
@arr = ('X', 'Y', 'Z');
以下のように出力を取得する必要があります
XとYとZ
XとYまたはZ
X または Y または Z ..... ...