Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 384 Bytes

File metadata and controls

13 lines (10 loc) · 384 Bytes

Problem 19: Vernacular Transcription (Integer to English Words)

Problem Statement

Convert a non-negative integer num to its English words representation.

Input Format

  • An integer num.

Example

Input: num = 123
Output: "One Hundred Twenty Three" Input: num = 1234567
Output: "One Million Two Hundred Thirty Four Thousand Five Hundred Sixty Seven"