Programs icon indicating copy to clipboard operation
Programs copied to clipboard

This repository is a collection of basic programs in any coding language. This will participate in hacktoberfest 2022.

Results 21 Programs issues
Sort by recently updated
recently updated
newest added

Added code to check if two strings are anagrams of each other.

Light magic 8 ball program with the option of including further development from the user if wanted to gather user inputs.

Added code for Heapsort in java

shorting algorithm in python program

When I first ran this, I used 24 hours format and it did not give me errors or any messages but kept running for a while until I interrupted the...

#include #include using namespace std; int base2tobase10(int n){ int count=0, ans=0 ,rem ; while(n!=0){ rem=n%10; ans+=pow(2,count)*rem; count++; n/=10; } return ans; } int main(){ int n; coutn; cout

A handy cheatsheet for revising Java concepts. ![image](https://user-images.githubusercontent.com/62201854/196017769-12dbe297-9702-4bb2-9ca0-61faeeccbf67.png) Issue #131 . Kindly approve the PR & add for hacktoberfest label ,Thank you.