├── .gitignore ├── LICENSE ├── README.md ├── arrays ├── CyclicRotation.go ├── CyclicRotation_test.go ├── OddOccurencesInArray_test.go └── OddOccurrencesInArray.go ├── binary-search └── NailingPlanks.go ├── complexity ├── FrogJmp_test.go ├── FromJmp.go ├── PermMissingElem_test.go ├── PermMisssingElem.go ├── TapeEquilibrium.go └── TapeEquilibrium_test.go ├── counting-elements ├── FrogRiverOne.go ├── FrogRiverOne_test.go ├── MaxCounters.go ├── MaxCounters_test.go ├── MissingInteger.go ├── MissingInteger_test.go ├── PermCheck.go └── PermCheck_test.go ├── iterations ├── BinaryGap.go └── BinaryGap_test.go ├── leader ├── Dominator.go ├── Dominator_test.go ├── EquiLeader.go ├── EquiLeader_test.go └── stack.go ├── max-slice ├── MaxDoubleSliceSum.go ├── MaxDoubleSliceSum_test.go ├── MaxProfit.go ├── MaxProfit_test.go ├── MaxSliceSum.go └── MaxSliceSum_test.go ├── prefix-sums ├── CountDiv.go ├── CountDiv_test.go ├── CountingCars.go ├── CountingCars_test.go ├── GenomicRangeQuery.go ├── GenomicRangeQuery_test.go ├── MinAvgTwoSlice.go └── MinAvgTwoSlice_test.go ├── prime-composite ├── Flags.go ├── MinPerimeterRectangle.go └── MinPerimeterRectangle_test.go ├── sorting ├── DIstinct.go ├── Distinct_test.go ├── MaxProductOfThree.go ├── MaxProductOfThree_test.go ├── NumberOfDiscIntersections.go ├── NumberOfDiscIntersections_test.go ├── Triange_test.go └── Triangle.go └── stacks-queues ├── Brackets.go ├── Brackets_test.go ├── Fish.go ├── Fish_test.go ├── Nesting.go ├── Nesting_test.go ├── StoneWall.go ├── StoneWall_test.go └── stack.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodesp/codility-go/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodesp/codility-go/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodesp/codility-go/HEAD/README.md -------------------------------------------------------------------------------- /arrays/CyclicRotation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodesp/codility-go/HEAD/arrays/CyclicRotation.go -------------------------------------------------------------------------------- /arrays/CyclicRotation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodesp/codility-go/HEAD/arrays/CyclicRotation_test.go -------------------------------------------------------------------------------- /arrays/OddOccurencesInArray_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodesp/codility-go/HEAD/arrays/OddOccurencesInArray_test.go -------------------------------------------------------------------------------- /arrays/OddOccurrencesInArray.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodesp/codility-go/HEAD/arrays/OddOccurrencesInArray.go -------------------------------------------------------------------------------- /binary-search/NailingPlanks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodesp/codility-go/HEAD/binary-search/NailingPlanks.go -------------------------------------------------------------------------------- /complexity/FrogJmp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodesp/codility-go/HEAD/complexity/FrogJmp_test.go -------------------------------------------------------------------------------- /complexity/FromJmp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodesp/codility-go/HEAD/complexity/FromJmp.go -------------------------------------------------------------------------------- /complexity/PermMissingElem_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodesp/codility-go/HEAD/complexity/PermMissingElem_test.go -------------------------------------------------------------------------------- /complexity/PermMisssingElem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodesp/codility-go/HEAD/complexity/PermMisssingElem.go -------------------------------------------------------------------------------- /complexity/TapeEquilibrium.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodesp/codility-go/HEAD/complexity/TapeEquilibrium.go -------------------------------------------------------------------------------- /complexity/TapeEquilibrium_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodesp/codility-go/HEAD/complexity/TapeEquilibrium_test.go -------------------------------------------------------------------------------- /counting-elements/FrogRiverOne.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodesp/codility-go/HEAD/counting-elements/FrogRiverOne.go -------------------------------------------------------------------------------- /counting-elements/FrogRiverOne_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodesp/codility-go/HEAD/counting-elements/FrogRiverOne_test.go -------------------------------------------------------------------------------- /counting-elements/MaxCounters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodesp/codility-go/HEAD/counting-elements/MaxCounters.go -------------------------------------------------------------------------------- /counting-elements/MaxCounters_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodesp/codility-go/HEAD/counting-elements/MaxCounters_test.go -------------------------------------------------------------------------------- /counting-elements/MissingInteger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodesp/codility-go/HEAD/counting-elements/MissingInteger.go -------------------------------------------------------------------------------- /counting-elements/MissingInteger_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodesp/codility-go/HEAD/counting-elements/MissingInteger_test.go -------------------------------------------------------------------------------- /counting-elements/PermCheck.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodesp/codility-go/HEAD/counting-elements/PermCheck.go -------------------------------------------------------------------------------- /counting-elements/PermCheck_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodesp/codility-go/HEAD/counting-elements/PermCheck_test.go -------------------------------------------------------------------------------- /iterations/BinaryGap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodesp/codility-go/HEAD/iterations/BinaryGap.go -------------------------------------------------------------------------------- /iterations/BinaryGap_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodesp/codility-go/HEAD/iterations/BinaryGap_test.go -------------------------------------------------------------------------------- /leader/Dominator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodesp/codility-go/HEAD/leader/Dominator.go -------------------------------------------------------------------------------- /leader/Dominator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodesp/codility-go/HEAD/leader/Dominator_test.go -------------------------------------------------------------------------------- /leader/EquiLeader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodesp/codility-go/HEAD/leader/EquiLeader.go -------------------------------------------------------------------------------- /leader/EquiLeader_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodesp/codility-go/HEAD/leader/EquiLeader_test.go -------------------------------------------------------------------------------- /leader/stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodesp/codility-go/HEAD/leader/stack.go -------------------------------------------------------------------------------- /max-slice/MaxDoubleSliceSum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodesp/codility-go/HEAD/max-slice/MaxDoubleSliceSum.go -------------------------------------------------------------------------------- /max-slice/MaxDoubleSliceSum_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodesp/codility-go/HEAD/max-slice/MaxDoubleSliceSum_test.go -------------------------------------------------------------------------------- /max-slice/MaxProfit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodesp/codility-go/HEAD/max-slice/MaxProfit.go -------------------------------------------------------------------------------- /max-slice/MaxProfit_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodesp/codility-go/HEAD/max-slice/MaxProfit_test.go -------------------------------------------------------------------------------- /max-slice/MaxSliceSum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodesp/codility-go/HEAD/max-slice/MaxSliceSum.go -------------------------------------------------------------------------------- /max-slice/MaxSliceSum_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodesp/codility-go/HEAD/max-slice/MaxSliceSum_test.go -------------------------------------------------------------------------------- /prefix-sums/CountDiv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodesp/codility-go/HEAD/prefix-sums/CountDiv.go -------------------------------------------------------------------------------- /prefix-sums/CountDiv_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodesp/codility-go/HEAD/prefix-sums/CountDiv_test.go -------------------------------------------------------------------------------- /prefix-sums/CountingCars.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodesp/codility-go/HEAD/prefix-sums/CountingCars.go -------------------------------------------------------------------------------- /prefix-sums/CountingCars_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodesp/codility-go/HEAD/prefix-sums/CountingCars_test.go -------------------------------------------------------------------------------- /prefix-sums/GenomicRangeQuery.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodesp/codility-go/HEAD/prefix-sums/GenomicRangeQuery.go -------------------------------------------------------------------------------- /prefix-sums/GenomicRangeQuery_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodesp/codility-go/HEAD/prefix-sums/GenomicRangeQuery_test.go -------------------------------------------------------------------------------- /prefix-sums/MinAvgTwoSlice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodesp/codility-go/HEAD/prefix-sums/MinAvgTwoSlice.go -------------------------------------------------------------------------------- /prefix-sums/MinAvgTwoSlice_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodesp/codility-go/HEAD/prefix-sums/MinAvgTwoSlice_test.go -------------------------------------------------------------------------------- /prime-composite/Flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodesp/codility-go/HEAD/prime-composite/Flags.go -------------------------------------------------------------------------------- /prime-composite/MinPerimeterRectangle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodesp/codility-go/HEAD/prime-composite/MinPerimeterRectangle.go -------------------------------------------------------------------------------- /prime-composite/MinPerimeterRectangle_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodesp/codility-go/HEAD/prime-composite/MinPerimeterRectangle_test.go -------------------------------------------------------------------------------- /sorting/DIstinct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodesp/codility-go/HEAD/sorting/DIstinct.go -------------------------------------------------------------------------------- /sorting/Distinct_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodesp/codility-go/HEAD/sorting/Distinct_test.go -------------------------------------------------------------------------------- /sorting/MaxProductOfThree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodesp/codility-go/HEAD/sorting/MaxProductOfThree.go -------------------------------------------------------------------------------- /sorting/MaxProductOfThree_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodesp/codility-go/HEAD/sorting/MaxProductOfThree_test.go -------------------------------------------------------------------------------- /sorting/NumberOfDiscIntersections.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodesp/codility-go/HEAD/sorting/NumberOfDiscIntersections.go -------------------------------------------------------------------------------- /sorting/NumberOfDiscIntersections_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodesp/codility-go/HEAD/sorting/NumberOfDiscIntersections_test.go -------------------------------------------------------------------------------- /sorting/Triange_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodesp/codility-go/HEAD/sorting/Triange_test.go -------------------------------------------------------------------------------- /sorting/Triangle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodesp/codility-go/HEAD/sorting/Triangle.go -------------------------------------------------------------------------------- /stacks-queues/Brackets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodesp/codility-go/HEAD/stacks-queues/Brackets.go -------------------------------------------------------------------------------- /stacks-queues/Brackets_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodesp/codility-go/HEAD/stacks-queues/Brackets_test.go -------------------------------------------------------------------------------- /stacks-queues/Fish.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodesp/codility-go/HEAD/stacks-queues/Fish.go -------------------------------------------------------------------------------- /stacks-queues/Fish_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodesp/codility-go/HEAD/stacks-queues/Fish_test.go -------------------------------------------------------------------------------- /stacks-queues/Nesting.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodesp/codility-go/HEAD/stacks-queues/Nesting.go -------------------------------------------------------------------------------- /stacks-queues/Nesting_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodesp/codility-go/HEAD/stacks-queues/Nesting_test.go -------------------------------------------------------------------------------- /stacks-queues/StoneWall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodesp/codility-go/HEAD/stacks-queues/StoneWall.go -------------------------------------------------------------------------------- /stacks-queues/StoneWall_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodesp/codility-go/HEAD/stacks-queues/StoneWall_test.go -------------------------------------------------------------------------------- /stacks-queues/stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodesp/codility-go/HEAD/stacks-queues/stack.go --------------------------------------------------------------------------------