From f75ece039d9cbc2d977a39adec58997813946ff4 Mon Sep 17 00:00:00 2001 From: Pranay Shreshth <152575263+shpranay@users.noreply.github.com> Date: Sun, 2 Aug 2026 12:11:45 +0530 Subject: [PATCH] Update README_EN.md with optimal play clarification Added explanation about optimal play in Stone Game. --- solution/0800-0899/0877.Stone Game/README_EN.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/solution/0800-0899/0877.Stone Game/README_EN.md b/solution/0800-0899/0877.Stone Game/README_EN.md index c117078d67d96..373f74c12f1ce 100644 --- a/solution/0800-0899/0877.Stone Game/README_EN.md +++ b/solution/0800-0899/0877.Stone Game/README_EN.md @@ -364,3 +364,9 @@ impl Solution { + + +''' +there is also another way and that is just return True and it would be submitted fine, as both the players are playing optimally, so always Alice would won as having the advantage to pick the first pile. +so return True and you get it 100%. +