6 kyu
Simple Sentences
1,531 of 3,642fizis
Description:
Implement a function, so it will produce a sentence out of the given parts.
Array of parts could contain:
- words;
- commas in the middle;
- multiple periods at the end.
Sentence making rules:
- there must always be a space between words;
- there must not be a space between a comma and word on the left;
- there must always be one and only one period at the end of a sentence.
Example:
makeSentence(['hello', ',', 'my', 'dear']) // returns 'hello, my dear.'
Strings
Regular Expressions
Fundamentals
Similar Kata:
Stats:
Created | Nov 28, 2013 |
Published | Nov 28, 2013 |
Warriors Trained | 6337 |
Total Skips | 952 |
Total Code Submissions | 34242 |
Total Times Completed | 3642 |
JavaScript Completions | 1531 |
CoffeeScript Completions | 140 |
Ruby Completions | 1022 |
Python Completions | 963 |
Clojure Completions | 12 |
Total Stars | 65 |
% of votes with a positive feedback rating | 90% of 479 |
Total "Very Satisfied" Votes | 396 |
Total "Somewhat Satisfied" Votes | 71 |
Total "Not Satisfied" Votes | 12 |