Skip to content

Commit 63a1204

Browse files
committed
Runtime: 229 ms (Top 67.86%) | Memory: 51.8 MB (Top 92.86%)
1 parent b1a43ea commit 63a1204

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/algorithms/S/Stone Game III/Stone Game III.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// Runtime: 229 ms (Top 67.86%) | Memory: 51.8 MB (Top 92.86%)
12
var stoneGameIII = function(stoneValue) {
23
let len = stoneValue.length-1
34
let bestMoves = [0,0,0]
@@ -18,4 +19,3 @@ var stoneGameIII = function(stoneValue) {
1819
? "Bob"
1920
: "Tie"
2021
};
21-

0 commit comments

Comments
 (0)