// A01.cs using System; using System.Collections; public class A01 { private static string B = "01"; public static void Main(string[] args) { // init ArrayList Given = new ArrayList(); Given.Add("01010101"); Given.Add("11011001"); Given.Add("10001000"); Given.Add("00010011"); // compute ArrayList Computed = new ArrayList(); int N = Given.Count; for(int i=0; i