Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Markdownlint fixes kyu8 #361

Merged
merged 2 commits into from
Jul 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions kyu_8/convert_string_to_an_array/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,12 @@
Write a function to split a string and convert it into an array of words.
For example:

<!-- markdownlint-disable MD013 -->
```text
> "Robin Singh" ==> ["Robin", "Singh"]
>
> "I love arrays they are my favorite" ==> ["I", "love", "arrays", "they", "are", "my", "favorite"]
```
<!-- markdownlint-enable MD013 -->

[Source](https://www.codewars.com/kata/57e76bc428d6fbc2d500036d/train/python)
2 changes: 1 addition & 1 deletion kyu_8/wolf_in_sheep_clothing/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ where N is the sheep's position in the queue

**Note:** there will always be exactly one wolf in the array.

### Examples
## Examples

<!-- markdownlint-disable MD013 -->
```text
Expand Down
Loading