Intcode Processor Work

This commit is contained in:
Brian Buller 2019-12-04 10:42:49 -06:00
parent ed78ac855a
commit 3722f044ff
4 changed files with 5 additions and 4 deletions

View File

@ -1,9 +1,9 @@
package main
import (
"../intcode-processor"
"bufio"
"fmt"
"git.bullercodeworks.com/brian/adventofcode/intcode-processor"
"log"
"os"
"strconv"

View File

@ -1,3 +1,3 @@
module intcode
module git.bullercodeworks.com/brian/adventofcode/intcode-processor
go 1.13

View File

@ -14,6 +14,6 @@ func NewProgram(prog []int) *Program {
return p
}
func (p *Program) PrintCode() {
fmt.Println(code)
func (p *Program) CodeString() string {
return fmt.Sprintf("%v", p.code)
}

1
go.sum
View File

@ -5,6 +5,7 @@ bitbucket.org/thezeez/advent-of-code-2017 v0.0.0-20171225063809-1918042ef639 h1:
bitbucket.org/thezeez/advent-of-code-2017 v0.0.0-20171225063809-1918042ef639/go.mod h1:0hCXmcMGkJQ6c4PhTVJLrbCvsxRpLoq84HQE8u8fFeY=
bitbucket.org/thezeez/advent-of-code-2018 v0.0.0-20181225065213-533e12eb8451 h1:IFdtuKSjoogiNOcVqsANmYqy3jR2+AYdKolN6fDO2rg=
bitbucket.org/thezeez/advent-of-code-2018 v0.0.0-20181225065213-533e12eb8451/go.mod h1:EmAD0MqW6nbmxrTlT7Lvzjv22xm5tcKgu6k0sBIMf6Y=
git.bullercodeworks.com/brian/adventofcode v0.0.0-20191204150234-ed78ac855a6d h1:sVMHqDXdjDdIFlL5jfm5U9swH+lb/B/ZtzM9+XqEzEs=
github.com/alecthomas/gometalinter v2.0.11+incompatible h1:toROE7pXPU/pUB4lh6ICqUKwpDtmkRCyJIr1nYqmKp0=
github.com/alecthomas/gometalinter v2.0.11+incompatible/go.mod h1:qfIpQGGz3d+NmgyPBqv+LSh50emm1pt72EtcX2vKYQk=
github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf h1:qet1QNfXsQxTZqLG4oE62mJzwPIB8+Tee4RNCL9ulrY=