Sha256: 3418ee464bab2a5e91e2d0d902c50cc590a61e36846e254f566020e40aa475a6
Contents?: true
Size: 643 Bytes
Versions: 21
Compression:
Stored size: 643 Bytes
Contents
// This is a "stub" file. It's a little start on your solution. // It's not a complete solution though; you have to write some code. // Package acronym should have a package comment that summarizes what it's about. // https://golang.org/doc/effective_go.html#commentary package acronym func Abbreviate(string) string // Abbreviate should have a comment documenting it. func Abbreviate(s string) string { // Write some code here to pass the test suite. // Then remove all the stock comments. // They're here to help you get started but they only clutter a finished solution. // If you leave them in, reviewers may protest! return "" }
Version data entries
21 entries across 21 versions & 1 rubygems