Skip to content

Instantly share code, notes, and snippets.

@louy2
Created March 9, 2016 09:59
Show Gist options
  • Save louy2/4ccfd3fa513c4c0f3497 to your computer and use it in GitHub Desktop.
Save louy2/4ccfd3fa513c4c0f3497 to your computer and use it in GitHub Desktop.
「めがね」ゲットチャレンジ!https://paiza.jp/poh/ando | 恋愛SLG: プログラミングで彼女をつくる|paizaオンラインハッカソン7
package main
import (
"fmt"
"os"
"bufio"
"strconv"
)
func parseStdin() {
stdin := bufio.NewScanner(os.Stdin)
stdin.Scan()
lenOfCanvas := strconv.Atoi(stdin.Text())
stdin.Scan()
}
func main(){
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment