#developer
Read more stories on Hashnode
Articles with this tag
Beginner ยท Problem Write a program to find bracket matches correctly or not. Examples [][][] => "Matched" (())()) => "Not Matched" }}{{ => "Not...
Beginner ยท Problem Write a program to find a factorial of a given number. Examples 6! = 720, 5! = 120, 4! = 24 Dos Try to solve it in a most simple and...
1. Readable long number If you are declaring a long number (eg. 10 million) in your code, it would be much harder for other guys to read it (10000000...