dengxinyi 6 years ago
parent
commit
22cc6422cd
1 changed files with 17 additions and 0 deletions
  1. 17 0
      oj/bytedance-2019-interview/calculator.go

+ 17 - 0
oj/bytedance-2019-interview/calculator.go

@@ -0,0 +1,17 @@
+package main
+
+import (
+	"fmt"
+	"strconv"
+	"errors"
+)
+
+func calculate(str string) (float64, error) {
+	
+}
+
+func nextInt()
+
+func main() {
+	
+}