georgiyozhegov commited on
Commit
5c4b97b
·
verified ·
1 Parent(s): 5eec6dd

Add example solution

Browse files
Files changed (1) hide show
  1. README.md +11 -1
README.md CHANGED
@@ -14,4 +14,14 @@ This dataset is designed to teach LLM how to solve basic arithmetic problems.
14
  |`type`|Type of numbers in the problem|
15
  |`range`|Range of numbers (-N...N) used in the problem|
16
 
17
- If problem contains an error (e.g. division by zero), `answer` equals "error".
 
 
 
 
 
 
 
 
 
 
 
14
  |`type`|Type of numbers in the problem|
15
  |`range`|Range of numbers (-N...N) used in the problem|
16
 
17
+ If the problem contains an error (e.g. division by zero), `answer` equals "error".
18
+
19
+ Example solution:
20
+
21
+ ```
22
+ find 10 * 9 - 10 + 4
23
+ step 10 * 9 = 90
24
+ step 90 - 10 = 80
25
+ step 80 + 4 = 84
26
+ answer 84
27
+ ```