Skip to content

Instantly share code, notes, and snippets.

View kevdonk's full-sized avatar

Kevin Mayo kevdonk

View GitHub Profile
package main
import "fmt"
func main() {
var n, primary, secondary, sum int
fmt.Scanf("%v", &n)
matrix := make([][]int, n)
for i := range matrix {
matrix[i] = make([]int, n)
for ii := range matrix[i] {

Keybase proof

I hereby claim:

  • I am kevdonk on github.
  • I am kevdonk (https://keybase.io/kevdonk) on keybase.
  • I have a public key whose fingerprint is 0A0B B5AB 4CF3 43CA DC0E 4646 79DA 28DF 3915 2968

To claim this, I am signing this object:

@kevdonk
kevdonk / git-procedure
Created April 18, 2015 19:14
Hackathon Team Git Procedure
##Clone the group repo and cd into the directory
```
git clone https://github.com/devtrees/angularjs-leaderboard-firebase
cd angularjs-leaderboard-firebase
```
##Create your own branch to work own
```
git checkout -b your-branch-name
```
##Commiting your changes