Giter Site home page Giter Site logo

maheshjainckd / hacktoberfest2022-for-everyone Goto Github PK

View Code? Open in Web Editor NEW
152.0 152.0 754.0 78.4 MB

This repository is for everyone who wants to participate in Hacktoberfest 2022. Anyone can contribute/add quality code or projects for your Swags (T- Shirt), must be relevant that can add some value to this repository.

Home Page: https://hacktoberfest-2022-react.vercel.app/

License: MIT License

Go 0.26% C 2.53% C++ 13.53% Java 3.74% HTML 5.11% Dart 0.10% Python 5.65% JavaScript 40.02% CSS 6.97% Kotlin 0.02% Solidity 0.06% Jupyter Notebook 9.94% PHP 0.71% Hack 0.01% SCSS 5.79% Shell 0.01% Handlebars 0.32% EJS 0.02% Less 5.21%
angularjs c cpp digitalocean golang hacktoberfest hacktoberfest-accepted hacktoberfest2022 hacktoberfest22 html-css-javascript java javascript kotlin laravel open-source php python reactjs rust vuejs

hacktoberfest2022-for-everyone's People

Contributors

34sravani-g avatar ajbatth avatar akrishna5 avatar apurvgangavane avatar archita21518 avatar avi2801 avatar ayushmittal10 avatar bishalbar77 avatar code-with-srj avatar d-coder111 avatar danish0007 avatar dekode1859 avatar dikshantrajput avatar dineshkumar12004 avatar himanshugupta11110000 avatar khushimarothi avatar kiritocode1 avatar kritik007 avatar kshitizpratap avatar maheshjainckd avatar mayukhsharma avatar naveen-duggal avatar poolsdomain avatar priyanshi-rai avatar rocksaini avatar rohansingh03 avatar shreya241 avatar supandeep avatar tanishqkhetan avatar vaibhavpan02 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  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  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  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

hacktoberfest2022-for-everyone's Issues

Add testimonial

I want to add testimonial section code.
Tech stack used:- Html, CSS and JS.

Please assign it to me for hacktoberfest 2022.

Add Least Recently Used (LRU) Cache problem in C++

Hi there,

I would like to raise a PR for a real life example of LRU cache in C++. Here we apply the data structures doubly linked list and hashmap together.
Kindly assign this to me under the hacktoberfest label.
Thanks!

Add 2 question of Array in cpp

Hi, @maheshjainckd I would like to contribute to this repository

I want to add 2 Questions in Array Practice folder

  1. Merge Two sorted Array
  2. Rotate an Array

Please assign this to me under Hacktoberfest .
Thanks!!

I want to add Black-Jack Game

It is a web based Game project created using HTML, CSS and JavaScript.

Please assign it to me for hacktoberfest 2022.

Infix to Postfix using Stack

I'm a participant of hacktoberfest-2022.
I would perform infix to postfix operation to enhance stack usage. Would like to contribute to this repository.
Please accept my issue

Remove Nth node from end of a list

I wish to add a program to Remove Nth node from end of a list in CPP folder.

Please assign this issue to me under the "hacktoberfest" label

Recursion folder in Java

I would like to add a recursion folder under Java programs in which I will add popular problems like N-Queens, Knight's tour, etc.

please assign it to me.

Linkedin-Auto connect bot

I would like to add the code of using selenium library of python to make a bot for sending auto connect requests to people of user's interest.

Moore's Voting Algorithm in C++ to find the majority element in an array

Please include this as HACKTOBERFEST 2022 issue. I really need that t-shirt. I will be very grateful to you. Pls tag this as Hacktoberfest so it can be counted.
I have even commented every step as well in order to make it more understandable and readable.

#include<bits/stdc++.h>
using namespace std;

int moore_voting(int [], int);

int main()
{
    int n, ar[50];
    cout << "Enter the size of the array: ";
    cin >> n;
    for(int i = 0; i<n; i++)
    {
        cout << "ar[" << i << "] = ";
        cin >> ar[i];
    }
    cout << "The majority element in the array is: ";
    cout << moore_voting(ar, n);
}

int moore_voting(int arr[], int size)
{
    //Phase 1: - Finds a suitable candidate for the majority element
    int res = 0, count = 1;     //
    for(int i = 1; i<size; i++)    //Traversing the array
    {
        if(arr[res] == arr[i])   //Checking if first element is same as ith element
            count++;     //If yes then incrementing the count by 1
        else
            count--;     //Decrementing the count if ith element is not equal to first element
        if(count==0)     //If at any point the count becomes 0 while decrementing
        {
            res = i;     //Updating the ith element as result since it's not a suitable 
            count = 1;   //candidate for majority. Also resetting the count of majority element
        }
    }

    //Phase 2: - Checks if the candidate selected is actually in majority or not
    count = 0;
    for(int i = 0; i<size; i++)
    {
        if(arr[res] == arr[i])
        
            count++;              //Line 36-44: - Checks if the candidate
    }                             //element is a majority element or not
    if(count <= size/2)
        res = -1;
    return res;
}

Number System Transformation Folder in CPP

I want to add this folder in which I will add Binary to Decimal, Decimal to Binary, Binary to Octal, Octal to Binary, Binary to Hexadecimal ,Hexadecimal to Binary .
Please assign me this task and add the Hacktoberfest Tag

Median of two sorted arrays of same size

Given two sorted arrays nums1 and nums2 of size m and n respectively, return the median of the two sorted arrays.

The overall run time complexity should be O(log (m+n)).

Example 1:

Input: nums1 = [1,3], nums2 = [2]
Output: 2.00000
Explanation: merged array = [1,2,3] and median is 2.
Example 2:

Input: nums1 = [1,2], nums2 = [3,4]
Output: 2.50000
Explanation: merged array = [1,2,3,4] and median is (2 + 3) / 2 = 2.5.

Constraints:

nums1.length == m
nums2.length == n
0 <= m <= 1000
0 <= n <= 1000
1 <= m + n <= 2000
-106 <= nums1[i], nums2[i] <= 106

JS Typewritter script

JavaScript TypeWritter script that allows you to add one or more texts that will be displayed on the webpage in a typing way, and when the text reaches the end the script will then start going backwards, deleting the text and moving to the new one.

Good for Portfolio and keywords

Chrome Extension

I have created a Chrome Extension which is used to save important links or tabs.

Please assign it to me for hacktoberfest 2022.

Screenshot (180)

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.