Giter Club home page Giter Club logo

hacktoberfest2023's Introduction

Hacktoberfest 2023 OPEN YOUR Pull Request 🎉

hacktoberfest2023

This Project Is Perfect For Your Pull Request

🗣 Hacktoberfest 2023 encourages participation in the open-source community, which grows bigger every year.

📢 Register here for hacktoberfest2023 and make four pull requests (PRs) between October 1st-31st to grab free DIGITAL-SWAGS 🔥.

Contributing

🎉 We welcome contributions from everyone, regardless of your experience level. Here are some ways you can contribute:

Do read the Contribution Guidelines

  • 🐞 Reporting issues
  • 💡 Suggesting new features
  • 📚 Improving documentation
  • 🐛 Fixing bugs
  • 💻 Adding new code

Code of Conduct

Please read our Code of Conduct before participating in this project.

FAQs

If you have any questions, please check our FAQs for answers.


Hacktober Badge Star Badge Contributions

Pull Requests Badge GitHub contributors License Badge

Our Maintainers


Ossama Mehmood

Swaraj Mhatre

Abdul Rehman

Mohit Saini

Em_Dev

Dharmraj Patil

Aakif Mudel

Shaman M

kharshita590

Akshit Kumar Chandora

Contributors of Hacktoberfest 2023

hacktoberfest2023's People

Contributors

abdulrehmanghub avatar adithya-r-prabhu avatar aditya-y9 avatar amrutajayanti avatar amul-code avatar ansh1602 avatar avnee-gy avatar ayushi024 avatar chifez avatar gtgyani206 avatar gyanendu01 avatar harshit0015 avatar ipsitasenapati avatar jeevaramanathan avatar mizzcode avatar nabhia avatar neeraj10122004 avatar ossamamehmood avatar shaman-004 avatar susanhsrestha avatar tausifaman222 avatar twister904 avatar vedangp12 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

hacktoberfest2023's Issues

StarPattern Java

Hello, I would like to contribute to this repo by adding 6 basic Star pattern programs.

@ossamamehmood Please assign me this.

Thank You!!

Add Golang Documentation

I think there should be a folder for Golang also with a small program as an example.
Others can add more Golang programs.

Hamiltonian Flights (Competitive Progamming, C++)

There are n cities and m flight connections between them. You want to travel from Syrjälä to Lehmälä so that you visit each city exactly once. How many possible routes are there?

Input
The first input line has two integers n and m: the number of cities and flights. The cities are numbered 1,2,…,n. City 1 is Syrjälä, and city n is Lehmälä.

Then, there are m lines describing the flights. Each line has two integers a and b: there is a flight from city a to city b. All flights are one-way flights.

Output
Print one integer: the number of routes modulo 10^9+7.

Constraints
2 ≤ n ≤ 20
1 ≤ m ≤ n^2
1 ≤ a,b ≤ n

Example
Input:

4 6
1 2
1 3
2 3
3 2
2 4
3 4
Output:

2

Length of Last Word

Given a string s consisting of words and spaces, return the length of the last word in the string.

A word is a maximal substring consisting of non-space characters only.

Boggle Word Solver in Python

I want to add a Boggle Word solver in python. Entire program will be modular. So can anyone please assign me this issue under #Hacktoberfest and hacktoberfest-accepted label?

topological sorting

Given a Directed Acyclic Graph (DAG) with V vertices and E edges, Find any Topological Sorting of that Graph

Create a Login

I want to add a new view, This will be a login in Spanish (my native language)

SortingAlgorithms in Java

Hello, I would like to contribute in this repository by adding sorting algorithms like SelctionSort, InsertionSort and BubbleSort.

@ossamamehmood Please assign me this.

Thank You!

Added a Simple Music Player Project

I have just added my first PR on creating a proof-of-concept Music-Player. Song were removed as copyright issue but adding songs and adjust the codes as needed will makes the web fully functional.

create javascript folder

create a folder for contributing javascript code and a readme.md file stating the contribution guidelines

Building Roads (Competitive Progamming, C++)

Byteland has n cities, and m roads between them. The goal is to construct new roads so that there is a route between any two cities.
Your task is to find out the minimum number of roads required, and also determine which roads should be built.
Input
The first input line has two integers n and m: the number of cities and roads. The cities are numbered 1,2,… n.
After that, there are m lines describing the roads. Each line has two integers a and b: there is a road between those cities.
A road always connects two different cities, and there is at most one road between any two cities.
Output
First print an integer k: the number of required roads.
Then, print k lines that describe the new roads. You can print any valid solution.
Constraints
1<=n<=10^5
1<=m<=2*(10^5)
1<=a,b<=n
Example
Input:
4 2
1 2
3 4
Output:
1
2 3

Teleporters Path (Competitive Progamming, C++)

A game has n levels and m teleporters between them. You win the game if you move from level 1 to level n using every teleporter exactly once.

Can you win the game, and what is a possible way to do it?

Input
The first input line has two integers n and m: the number of levels and teleporters. The levels are numbered 1,2,…,n.

Then, there are m lines describing the teleporters. Each line has two integers a and b: there is a teleporter from level a to level b.

You can assume that each pair (a,b) in the input is distinct.

Output
Print m+1 integers: the sequence in which you visit the levels during the game. You can print any valid solution.

If there are no solutions, print "IMPOSSIBLE".

Constraints
2 ≤ n ≤ 10^5
1 ≤ m ≤ 2*10^5
1 ≤ a,b ≤ n

Example
Input:

5 6
1 2
1 3
2 4
2 5
3 1
4 2
Output:

1 3 1 2 4 2 5

Hi... I'm a begineer in hacktoberfest

can I contribute to this repo, especially in web development?

I will create a project Landing Page for Car Rental, please @Chifez assign it to me under #hacktoberfest-accepted label

thanks...

Add Stack Program in Java

Stack is a data structure that has many practical applications ex- brower history,etc so i have provided the beginner friendly code to stack. It demonstrates the working of stack in JAVA language. It will help new users to learn the basics of stack

Grid Search

Description
The problem Grid Search specifies :
Given an array of strings of digits we have to find the occurrence of a given pattern of digits. In the grid and pattern arrays, each string represents a row in the grid. The Pattern is given and then the grid to be found is given .For example, consider the following grid:

1234567890
0987654321
1111111111
1111111111
2222222222

The pattern array is:

876543
111111
111111

The pattern begins at the second row and the third column of the grid and continues in the following two rows. The pattern is said to be present in the grid. The return value should be YES or NO, depending on whether the pattern is found. In this case, return YES.

Eg.
10 10
7283455864
6731158619
8988242643
3830589324
2229505813
5633845374
6473530293
7053106601
0834282956
4607924137
3 4
9505
3845
3530

Output:- YES

DSA Problem
https://www.hackerrank.com/challenges/the-grid-search/problem

Fix the typo of CONTRIBUTING.md

im found the typo this contributing.md especially in the section 'terminal' is not @ossamamehmood link repo and then I change to this repo

So I try to fix this typo and in the section ##language-specific folders, I am add javascript

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.