Git Product home page Git Product logo

sachindrck / hactoberfest_contribution_2022 Goto Github PK

View Code? Open in Web Editor NEW
25.0 25.0 104.0 37.19 MB

Create four pull request and win hacktoberfest swags!

License: GNU General Public License v3.0

Python 22.25% C++ 38.10% Java 32.54% JavaScript 2.52% HTML 0.95% CSS 0.76% Clojure 0.84% TypeScript 2.04%
api c-plus-plus clojure css first-timers first-timers-friendly hacktoberfest hacktoberfest2022 html java js python web

hactoberfest_contribution_2022's Introduction

Hi there ๐Ÿ‘‹

hactoberfest_contribution_2022's People

Contributors

abhijitsatyam avatar adarsh-863 avatar adityachandra1 avatar ajjayymahato avatar anmolali5811 avatar anushkasaxena27 avatar ashutosh-510 avatar dev-d-gr8 avatar hariom09090 avatar isha-30 avatar juanpablocano avatar lalitkashyap58 avatar mikhiel39 avatar mohdaqib12011004 avatar neetu-749 avatar peddinti-sriram-bharadwaj avatar priyalj52 avatar rahulsingh522003 avatar sachindrck avatar sachisahu avatar sankarraj432 avatar saran1522 avatar sid-rajput avatar sudhirhanumantu avatar swapnil05rai avatar sysagar avatar ujjwalpathaak avatar umesh-01 avatar yashveersingh1062 avatar zubair15121716 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

hactoberfest_contribution_2022's Issues

Python code to find factorial of a number

The factorial of a number is the product of all the integers from 1 to that number.

For example, the factorial of 6 is 1x2x3x4x5x6 = 720. Factorial is not defined for negative numbers, and the factorial of zero is one, 0! = 1.

Implement Queue using Stacks

We are given a stack data structure with push and pop operations, the task is to implement a queue using instances of stack data structure and operations on them.

Python Program to Solve Quadratic Equation

The standard form of a quadratic equation is:

ax2 + bx + c = 0, where
a, b and c are real numbers and
a โ‰  0

The solutions to this quadratic equation are given by:

(-b ยฑ (b ** 2 - 4 * a * c) ** 0.5) / (2 * a)

Python code for calculator

Here we will be making a simple calculator in which we can perform basic arithmetic operations like addition, subtraction, multiplication, or division.

Python Program to Find HCF or GCD

The highest common factor (H.C.F) or greatest common divisor (G.C.D) of two numbers is the largest positive integer that perfectly divides the two given numbers. For example, the H.C.F of 12 and 14 is 2.

Implement Stack using Queues

Given a Queue data structure that supports standard operations like enqueue() and dequeue(). The task is to implement a Stack data structure using only instances of Queue and Queue operations allowed on the instances.

Add a RECURSION folder in C++

A recursion folder may be added to C++ section that will contain all the programs that are solved using recursion.

Python code for Tic tac toe

Tic-tac-toe, noughts, and crosses, or Xs and Os is a paper-and-pencil game for two players who take turns marking the spaces in a three-by-three grid with X or O. The player who succeeds in placing three of their marks in a horizontal, vertical, or diagonal row is the winner.

C++ Program to Check Whether a Number is Prime or Not

A positive integer which is only divisible by 1 and itself is known as prime number.

For example: 13 is a prime number because it is only divisible by 1 and 13 but, 15 is not prime number because it is divisible by 1, 3, 5 and 15.

Note: 0 and 1 are not prime numbers.

Program for Tower of Hanoi Algorithm

Tower of Hanoi is a mathematical puzzle where we have three rods (A, B, and C) and N disks. Initially, all the disks are stacked in decreasing value of diameter i.e., the smallest disk is placed on the top and they are on rod A. The objective of the puzzle is to move the entire stack to another rod (here considered C), obeying the following simple rules:

Only one disk can be moved at a time.
Each move consists of taking the upper disk from one of the stacks and placing it on top of another stack i.e. a disk can only be moved if it is the uppermost disk on a stack.
No disk may be placed on top of a smaller disk.

Python Program to Check Armstrong Number

A positive integer is called an Armstrong number of order n if

abcd... = a^n + b^n + c^n + d^n + ...
In the case of an Armstrong number of 3 digits, the sum of cubes of each digit is equal to the number itself. For example:

153 = 111 + 555 + 333 // 153 is an Armstrong number.

C++ program for converting decimal number to binary number

->Technical issue
->I want to add a project in c++ using friend function (OOP) for converting decimal number to binary number . Here you can enter any decimal number and can get a binary number of the respective decimal number. I will a provide cpp file with the code and output of the code in it.
->I have intermediate level skills in c++ (OOP).
->It will take me one day to finish and upload this project.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.