swirl
Home Software Blog Wallpapers Webtools
Realize how you've changed
Sunday 23, December 2018   |   Post link
Thinking mind

Solving programming problems is one of the really fun things we programmers really like doing. The good ol' number to words conversion is one such problem - in management lingo - one such challenge. No matter what the buzzword - docker, kubenetes etc., the basics never go away.


Long time ago ...

I was in college when my friend and I worked on this program as a challenge who would finish it first. I think both of us took a good 5 - 6 hours, he finished it 15 minutes before me but his algorithm topped out at a lesser limit than mine. I really miss those days ...


Doing it again ...

While going through some C++ training material, I came across this problem today and thought how I would fare 17 years later. To my surprise I completed the problem in less than 15 minutes and with a whole lot more confidence that the program will perform correctly. I also noticed that my approach to problem solving has changed so much. I distinctly remember how I was trying to create a for-next loop for breaking a large number like 5406189921 into its parts - units, tens, hundreds. Back in college I think this is what I felt as the first complexity that needed solving. However this time around I hardly thought about this, I was rather identifying parts of the answer and not the problem which are unique e.g. 1 is one and 2 is two .. and 9 is nine. 20 is twenty and numbers between 100 and 999 (inclusive) hundreds. I think this was more in line with TDD which I have been following for the past few years and I was glad that my thinking (right or wrong) has changed. Pretty soon I had the various rules put down and using recursion to break the problem up came almost naturally without any thought.


The point ...

We all are learning lots of things at a tremendous pace but we don't realize that this is happening. Maybe others sometimes notice this but we ourselves seem to be oblivious of this. Going back to things which we did earlier and then looking at them with a new understanding is a great way to appreciate how each one of us is learning & growing. I think its really important we appreciate the world, the opportunities, each other and most of all our self as we move on in this fast paced life.


The code ...

OK, so getting to the code, here it is. I am sure you'll be able to write an even more efficient version of this, but here goes...

typedef __int64 numeric;
const std::string NumericToString(const numeric l) {
	switch (l) {
	case 0:
		return "zero";	
	case 1:
		return "one";
	case 2:
		return "two";
	case 3:
		return "three";
	case 4:
		return "four";
	case 5:
		return "five";
	case 6:
		return "six";
	case 7:
		return "seven";
	case 8:
		return "eight";
	case 9:
		return "nine";
	case 10:
		return "ten";
	case 11:
		return "eleven";
	case 12:
		return "twelve";
	case 13:
		return "thirteen";
	case 14:
		return "fourteen";
	case 15:
		return "fifteen";
	case 16:
		return "sixteen";
	case 17:
		return "seventeen";
	case 18:
		return "eighteen";
	case 19:
		return "nineteen";
	case 20:
		return "twenty";
	case 30:
		return "thirty";
	case 40:
		return "forty";
	case 50:
		return "fifty";
	case 60:
		return "sixty";
	case 70:
		return "seventy";
	case 80:
		return "eighty";
	case 90:
		return "ninety";
	}
	
	if (l > 9999999 && l < 10000000000) {
		numeric crore_part;
		numeric remaining_part;
		crore_part = l / 10000000;
		remaining_part = l % 10000000;
		return NumericToString(crore_part) + (crore_part == 1 ? " crore " : " crores ") + NumericToString(remaining_part);
	}
	else if (l > 99999 && l < 10000000) {
		numeric lakh_part;
		numeric remaining_part;
		lakh_part = l / 100000;
		remaining_part = l % 100000;
		return NumericToString(lakh_part) + (lakh_part == 1 ? " lakh " : " lakhs ") + NumericToString(remaining_part);
	}
	else if (l > 999 && l < 100000) {
		numeric thousand_part;
		numeric remaining_part;		
		thousand_part = l / 1000;
		remaining_part = l % 1000;		
		return NumericToString(thousand_part) + " thousand " + NumericToString(remaining_part);
	}
	else if (l > 99 && l < 1000) {
		if (l == 100) {
			return "hundred";
		}
		else {
			numeric hundred_digit = l / 100;
			numeric remaining_digits = l % 100;
			return NumericToString(hundred_digit) + " hundred " + NumericToString(remaining_digits);
		}
	}
	else if (l < 100) {
		numeric first_digit = l / 10 * 10;
		numeric second_digit = l % 10;
		return NumericToString(first_digit) + "-" + NumericToString(second_digit);
	}
	else {
		return "out-of-range";
	}
}
Sample output
5406189921 is five hundred forty crores sixty-one lakhs eighty-nine thousand nine hundred twenty-one

As of now the program tops out at 9999999999.



Tags: C++(3)

Comments

Posts By Year

2023 (5)
2022 (10)
2021 (5)
2020 (12)
2019 (6)
2018 (8)
2017 (11)
2016 (6)
2015 (17)
2014 (2)
2013 (4)
2012 (2)

Posts By Category

.NET (4)
.NET Core (2)
ASP.NET MVC (4)
AWS (5)
AWS API Gateway (1)
Android (1)
Apache Camel (1)
Architecture (1)
Audio (1)
Azure (2)
Book review (3)
Business (1)
C# (3)
C++ (2)
CloudHSM (1)
Containers (4)
Corporate culture (1)
Database (3)
Database migration (1)
Desktop (1)
Docker (1)
DotNet (3)
DotNet Core (2)
ElasticSearch (1)
Entity Framework (3)
Git (3)
IIS (1)
JDBC (1)
Java (9)
Kibana (1)
Kubernetes (1)
Lambda (1)
Learning (1)
Life (7)
Linux (1)
Lucene (1)
Multi-threading (1)
Music (1)
OData (1)
Office (1)
PHP (1)
Photography (1)
PowerShell (2)
Programming (28)
Rants (5)
SQL (2)
SQL Server (1)
Security (2)
Software Engineering (1)
Software development (2)
Solr (1)
Sql Server (2)
Storage (1)
T-SQL (1)
TDD (1)
TSQL (5)
Tablet (1)
Technology (1)
Test Driven (1)
Unit Testing (1)
Unit Tests (1)
Utilities (3)
VC++ (1)
VMWare (1)
VSCode (1)
Visual Studio (2)
Wallpapers (1)
Web API (2)
Win32 (1)
Windows (9)
XML (2)

Posts By Tags

.NET(6) API Gateway(1) ASP.NET(4) AWS(3) Adults(1) Advertising(1) Android(1) Anti-forgery(1) Asynch(1) Authentication(2) Azure(2) Backup(1) Beliefs(1) BlockingQueue(1) Book review(2) Books(1) Busy(1) C#(4) C++(3) CLR(1) CORS(1) CSRF(1) CTE(1) Callbacks(1) Camel(1) Certificates(1) Checkbox(1) CloudHSM(1) Cmdlet(1) Company culture(1) Complexity(1) Consumer(1) Consumerism(1) Containers(3) Core(2) Custom(2) DPI(1) Data-time(1) Database(4) Debugging(1) Delegates(1) Developer(2) Dockers(2) DotNetCore(3) EF 1.0(1) Earphones(1) Elastic Search(1) ElasticSearch(1) Encrypted(1) Entity framework(1) Events(1) File copy(1) File history(1) Font(1) Git(2) HierarchyID(1) IIS(1) Installing(1) Intelli J(1) JDBC(1) JSON(1) JUnit(1) JWT(1) Java(3) JavaScript(1) Kubernetes(1) Life(1) LinkedIn(1) Linux(2) Localization(1) Log4J(1) Log4J2(1) Lucene(1) MVC(4) Management(2) Migration history(1) Mirror(1) Mobile Apps(1) Modern Life(1) Money(1) Music(1) NGINX(1) NTFS(1) NUnit(2) OData(1) OPENXML(1) Objects(1) Office(1) OpenCover(1) Organization(1) PHP(1) Paths(1) PowerShell(2) Producer(1) Programming(2) Python(2) QAAC(1) Quality(1) REDIS(2) REST(1) Runtimes(1) S3-Select(1) SD card(1) SLF4J(1) SQL(2) SQL Code-first Migration(1) SSH(2) Sattelite assemblies(1) School(1) Secrets Manager(1) Self reliance(1) Service(1) Shell(1) Solr(1) Sony VAIO(1) Spirituality(1) Spring(1) Sql Express(1) System Image(1) TDD(1) TSQL(3) Table variables(1) Tables(1) Tablet(1) Ubuntu(1) Url rewrite(1) VMWare(1) VSCode(1) Validation(2) VeraCode(1) Wallpaper(1) Wallpapers(1) Web Development(4) Windows(2) Windows 10(2) Windows 2016(2) Windows 8.1(1) Work culture(1) XML(1) Yii(1) iTunes(1) renew(1) security(1)