Skip to content

Commit

Permalink
fix(curriculum): excessive blank lines in seed (freeCodeCamp#56793)
Browse files Browse the repository at this point in the history
  • Loading branch information
gikf authored Oct 24, 2024
1 parent e1fc907 commit b395080
Show file tree
Hide file tree
Showing 5 changed files with 1 addition and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -480,6 +480,4 @@ const setPlayerCards = (arr = players) => {

--fcc-editable-region--



```
Original file line number Diff line number Diff line change
Expand Up @@ -470,6 +470,4 @@ playersDropdownList.addEventListener("change", () => {

--fcc-editable-region--



```

0 comments on commit b395080

Please sign in to comment.