From b7aa22bac34a1133cba99c33c5d6027b1e05a2c7 Mon Sep 17 00:00:00 2001 From: Yury Bayda Date: Wed, 12 Aug 2026 23:48:55 -0700 Subject: [PATCH] chore: complete repository baseline --- .github/CODEOWNERS | 1 + README.md | 7 +++++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index e656eab..d0ffdce 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1 +1,2 @@ * @Coding-Cuddles/kata-maintainers +/.github/CODEOWNERS @Coding-Cuddles/kata-maintainers diff --git a/README.md b/README.md index 2c91011..ed5e4de 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,9 @@ [![Python 3.11+](https://img.shields.io/badge/python-3.11%2B-blue.svg)](https://www.python.org/downloads/) [![License: MIT](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE) +Implement ten-pin bowling scoring in Python 3.11 or later with pytest. Setup is complete when the +starter gutter-game test passes. + ## Overview This kata complements [Clean Code: Fundamentals, Ep. 5 - Form](https://cleancoders.com/episode/clean-code-episode-5). @@ -71,8 +74,8 @@ assert game.score() == 300 ``` In this example, the player gets 12 strikes in a row, the maximum number of -strikes possible in a game. Each strike is worth 10 points, plus the pins were -knocked down on the next two rolls, resulting in 300 points. +strikes possible in a game. Each strike is worth 10 points, plus the number of +pins knocked down on the next two rolls, resulting in 300 points. ## Prerequisites