From 90a5d9e84bb50f1975320c08b606b41b09f898e6 Mon Sep 17 00:00:00 2001 From: Yrahcaz7 <74512479+Yrahcaz7@users.noreply.github.com> Date: Thu, 4 Jun 2026 18:22:17 -0400 Subject: [PATCH] [Concept Exercise Fixes] Fix headings in Black Jack and Mecha Munch Management introductions --- exercises/concept/black-jack/.docs/introduction.md | 2 ++ exercises/concept/mecha-munch-management/.docs/introduction.md | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/exercises/concept/black-jack/.docs/introduction.md b/exercises/concept/black-jack/.docs/introduction.md index ec19d2f71f7..2a0aa98baa8 100644 --- a/exercises/concept/black-jack/.docs/introduction.md +++ b/exercises/concept/black-jack/.docs/introduction.md @@ -1,3 +1,5 @@ +# Introduction + ## Comparisons Python supports the following basic comparison operators: diff --git a/exercises/concept/mecha-munch-management/.docs/introduction.md b/exercises/concept/mecha-munch-management/.docs/introduction.md index 6f63d8acd60..674439828fd 100644 --- a/exercises/concept/mecha-munch-management/.docs/introduction.md +++ b/exercises/concept/mecha-munch-management/.docs/introduction.md @@ -4,7 +4,7 @@ The `dict` class in Python provides many useful [methods][dict-methods] for work Some were introduced in the concept for `dicts`. Here we cover a few more - along with some techniques for iterating through and manipulating dictionaries. -### Use `setdefault()` for Error-Free Insertion +## Use `setdefault()` for Error-Free Insertion The dictionary concept previously covered that `.get(key, )` returns an existing `value` or the `default value` if a `key` is not found in a dictionary, thereby avoiding a `KeyError`. This works well in situations where you would rather not have extra error handling but cannot trust that a looked-for `key` will be present.