Skip to content

Commit

Permalink
docs(SentenceSmash): add question readme.
Browse files Browse the repository at this point in the history
  • Loading branch information
Marcus.Silva committed Mar 20, 2023
1 parent 14fb8b7 commit 0e0d024
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
Sentence Smash
Write a function that takes an array of words and smashes them together into a sentence and returns the sentence. You can ignore any need to sanitize words or add punctuation, but you should add spaces between each word. Be careful, there shouldn't be a space at the beginning or the end of the sentence!

Example
````csharp
['hello', 'world', 'this', 'is', 'great'] => 'hello world this is great'
````

``STRINGS ARRAYS FUNDAMENTALS``

0 comments on commit 0e0d024

Please sign in to comment.