Skip to content

Latest commit

 

History

History
65 lines (48 loc) · 1.23 KB

README.md

File metadata and controls

65 lines (48 loc) · 1.23 KB

Acronym

Welcome to Acronym on Exercism's Go Track. If you need help running the tests or submitting your code, check out HELP.md.

Instructions

Convert a phrase to its acronym.

Techies love their TLA (Three Letter Acronyms)!

Help generate some jargon by writing a program that converts a long name like Portable Network Graphics to its acronym (PNG).

Punctuation is handled as follows: hyphens are word separators (like whitespace); all other punctuation can be removed from the input.

For example:

Input Output
As Soon As Possible ASAP
Liquid-crystal display LCD
Thank George It's Friday! TGIF

Source

Created by

  • @Akasurde

Contributed to by

  • @alebaffa
  • @antimatter96
  • @bitfield
  • @colinking
  • @da-edra
  • @ekingery
  • @felixbuenemann
  • @ferhatelmas
  • @hilary
  • @ilmanzo
  • @kytrinyx
  • @leenipper
  • @mattcbaker
  • @petertseng
  • @robphoenix
  • @sebito91
  • @strangeman
  • @tleen
  • @usmanismail
  • @eklatzer

Based on

Julien Vanier - https://github.com/monkbroc

My Solution