Thursday, 6 August 2020

Simple Snake Game Code for Advanced Dev's
Snake GameInstall curses for this code to workAlso this won't run on a Pycharm like I...
Checking if two strings are Anagram
Problem:   Objective: To Check whether two strings are Anagrams or Not. What are Anagram strings? The strings which constitutes...
Finding A big Factorial in c++
Problem:Objective: To find the Factorial of Numbers whose factorial is of the order 10^7.Input:First line takes t number...

Monday, 3 August 2020

Printing fibbonaci series without recursion in C++
ProblemObjective: To print n Fibonacci series terms.Code:Sample Output:Compiler Used:DEV-C++For feedback or query:...
Printing a right aligned staircase in C++
ProblemTo print a right aligned staircase as follows:         #     ##   ### #########Input:...

Sunday, 2 August 2020

How to download Pycharm for Coding in python!!
Install PyCharmPyCharm is a cross-platform IDE that provides consistent experience on the Windows, macOS, and Linux operating...

Saturday, 1 August 2020

Python program to find number of numbers with odd number of factors.
Objective: To find the count of numbers in a given range having odd number of factors. #Solution Code: #assignment...