Skip to content

Instantly share code, notes, and snippets.

@petiahr
petiahr / CrossRoadBits
Created May 1, 2015 02:13
Bits at CrossRoad
using System;
class Program
{
static void Main()
{
int n = int.Parse(Console.ReadLine());
uint[,] array = new uint[n, n];
uint[,] sum = new uint[n, n];
@petiahr
petiahr / BitSequenceExchange
Created April 12, 2015 03:17
BitSequenceExchange
using System;
class BitSequenceExchange
{
static void Main(string[] args)
{
uint number = uint.Parse(Console.ReadLine());