-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathinterpreter.go
64 lines (54 loc) · 984 Bytes
/
interpreter.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
package main
import (
"errors"
"fmt"
"strconv"
"strings"
)
type interpreter struct {
sentence string
}
func (i *interpreter) tokens() []string {
return strings.Split(i.sentence, " ")
}
func (i *interpreter) exec() int {
sum := 0
tokens := i.tokens()
for k, item := range tokens {
if item == "*" {
fmt.Println(i.tokens())
a, _ := strconv.Atoi(string(tokens[k-1]))
b, _ := strconv.Atoi(string(tokens[k+1]))
return a * b
}
if item != "+" {
number, _ := strconv.Atoi(item)
sum += number
}
}
return sum
}
func dict() map[string]string {
var m map[string]string
m = make(map[string]string)
m["+"] = "plus"
return m
}
func (i *interpreter) contains(s string) bool {
m := dict()
if _, ok := m[s]; ok {
return true
}
return false
}
func (i *interpreter) of(s string) error {
if s == "normal" {
return errors.New("non va")
}
i.sentence = s
return nil
}
func (i *interpreter) numberOfWords() int {
s := i.tokens()
return len(s)
}