From b39508057b7f1a080976cbfd408da901fc672ae0 Mon Sep 17 00:00:00 2001 From: "Krzysztof G." <60067306+gikf@users.noreply.github.com> Date: Thu, 24 Oct 2024 15:04:47 +0200 Subject: [PATCH] fix(curriculum): excessive blank lines in seed (#56793) --- .../6577254891048c8f2c19e961.md | 1 - .../65821fcc010c3245718f2a06.md | 2 +- .../65ef190c6b51e9b5a5f7ed29.md | 1 - .../63f28972973504e7bb58b0b3.md | 2 -- .../63f28ef082d771e8bf71f94a.md | 2 -- 5 files changed, 1 insertion(+), 7 deletions(-) diff --git a/curriculum/challenges/english/07-scientific-computing-with-python/learn-data-structures-by-building-the-merge-sort-algorithm/6577254891048c8f2c19e961.md b/curriculum/challenges/english/07-scientific-computing-with-python/learn-data-structures-by-building-the-merge-sort-algorithm/6577254891048c8f2c19e961.md index 73e65dc1b81..4f46b2cdb0c 100644 --- a/curriculum/challenges/english/07-scientific-computing-with-python/learn-data-structures-by-building-the-merge-sort-algorithm/6577254891048c8f2c19e961.md +++ b/curriculum/challenges/english/07-scientific-computing-with-python/learn-data-structures-by-building-the-merge-sort-algorithm/6577254891048c8f2c19e961.md @@ -30,7 +30,6 @@ You should call `merge_sort()` again after the previous function call. ## --seed-contents-- ```py - --fcc-editable-region-- def merge_sort(array): middle_point = len(array) // 2 diff --git a/curriculum/challenges/english/07-scientific-computing-with-python/learn-lambda-functions-by-building-an-expense-tracker/65821fcc010c3245718f2a06.md b/curriculum/challenges/english/07-scientific-computing-with-python/learn-lambda-functions-by-building-an-expense-tracker/65821fcc010c3245718f2a06.md index f00daf674ce..7d6179e2daf 100644 --- a/curriculum/challenges/english/07-scientific-computing-with-python/learn-lambda-functions-by-building-an-expense-tracker/65821fcc010c3245718f2a06.md +++ b/curriculum/challenges/english/07-scientific-computing-with-python/learn-lambda-functions-by-building-an-expense-tracker/65821fcc010c3245718f2a06.md @@ -29,7 +29,7 @@ You should not have `pass` in your function. ## --seed-contents-- -```py +```py --fcc-editable-region-- def add_expense(expenses, amount, category): pass diff --git a/curriculum/challenges/english/07-scientific-computing-with-python/learn-the-bisection-method-by-finding-the-square-root-of-a-number/65ef190c6b51e9b5a5f7ed29.md b/curriculum/challenges/english/07-scientific-computing-with-python/learn-the-bisection-method-by-finding-the-square-root-of-a-number/65ef190c6b51e9b5a5f7ed29.md index 3bf5a48b9b9..d9d0f93beaa 100644 --- a/curriculum/challenges/english/07-scientific-computing-with-python/learn-the-bisection-method-by-finding-the-square-root-of-a-number/65ef190c6b51e9b5a5f7ed29.md +++ b/curriculum/challenges/english/07-scientific-computing-with-python/learn-the-bisection-method-by-finding-the-square-root-of-a-number/65ef190c6b51e9b5a5f7ed29.md @@ -28,7 +28,6 @@ Your function should have these parameters: `square_target`, `tolerance = 1e-7`, ## --seed-contents-- ```py - --fcc-editable-region-- def square_root_bisection(): pass diff --git a/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-modern-javascript-methods-by-building-football-team-cards/63f28972973504e7bb58b0b3.md b/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-modern-javascript-methods-by-building-football-team-cards/63f28972973504e7bb58b0b3.md index 8d56c11e2de..3e02ed1740e 100644 --- a/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-modern-javascript-methods-by-building-football-team-cards/63f28972973504e7bb58b0b3.md +++ b/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-modern-javascript-methods-by-building-football-team-cards/63f28972973504e7bb58b0b3.md @@ -480,6 +480,4 @@ const setPlayerCards = (arr = players) => { --fcc-editable-region-- - - ``` diff --git a/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-modern-javascript-methods-by-building-football-team-cards/63f28ef082d771e8bf71f94a.md b/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-modern-javascript-methods-by-building-football-team-cards/63f28ef082d771e8bf71f94a.md index e37d115eef7..83c9f4aac32 100644 --- a/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-modern-javascript-methods-by-building-football-team-cards/63f28ef082d771e8bf71f94a.md +++ b/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-modern-javascript-methods-by-building-football-team-cards/63f28ef082d771e8bf71f94a.md @@ -470,6 +470,4 @@ playersDropdownList.addEventListener("change", () => { --fcc-editable-region-- - - ```