GithubHelp home page GithubHelp logo

vijaygupta18 / hacktoberfest-2022 Goto Github PK

View Code? Open in Web Editor NEW
95.0 1.0 338.0 271.35 MB

An Open Source repository to Teach people How to contribute to open sources.

License: MIT License

Java 71.84% C++ 5.88% Python 4.20% C 7.10% CSS 0.65% HTML 5.22% JavaScript 1.27% Kotlin 0.06% Swift 0.19% Objective-C 0.02% Dart 3.56%
hacktoberfest hacktoberfest2021 python code html css web app machine-learning fest

hacktoberfest-2022's Introduction

Hello, folks!

I'm a Software Engineer.

I have done my bachelor's degree in Information Technology from KNIT(2018-2022), Sultanpur.

  • โšก Fun fact Three C of my life: Chai,Code and Chill

Connect with me:

vijaygupta18 https://www.facebook.com/people/vijay-gupta/100050936141588 vijayguptaa18 rdxvijay


Vijay's github stats

Total Visitor

VisitorCount

hacktoberfest-2022's People

Contributors

a-n-a-s-s avatar abhipaul-99 avatar aniketttttttewariii avatar aryan-aman avatar codewithgulam avatar deepanshu-iiits-it avatar gazal1090 avatar haoes avatar ishanisamanta avatar jishu-yadav avatar karthik-59 avatar koushikpaul-06 avatar lakshaypahuja21 avatar m-dime avatar naman42624 avatar nayyhah avatar nikhilgang avatar niyatisinha-yb avatar pragatipal avatar pranavelric avatar pranjulagarwal avatar ronniepratap avatar sachin-722 avatar sjnexus avatar sjsneha avatar sparrowharsh avatar striver-21 avatar vaib-vaib avatar vijaygupta18 avatar yatender1199 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

Watchers

 avatar

hacktoberfest-2022's Issues

License

  • I think it would be interesting for the project to have the MIT license

clone error

When i try cloning this repo I keep getting an error what am I doing wrong?

Longest Mountain in Array- Complexity O(N)

Description:
An array arr is a mountain array if and only if:

  • arr.length >= 3
  • There exists some index i (0-indexed) with 0 < i < arr.length - 1 such that:
    - arr[0] < arr[1] < ... < arr[i - 1] < arr[i]
    - arr[i] > arr[i + 1] > ... > arr[arr.length - 1]

Given an integer array arr, return the length of the longest subarray, which is a mountain. Return 0 if there is no mountain subarray.

Example-
Input: arr = [2,1,4,7,3,2,5]

Output: 5

Explanation: The largest mountain is [1,4,7,3,2] which has length 5.

Exploratory Data Analysis

Exploratory data analysis on the set of data. Carried out using libraries like pandas, numpy, seaborn and matplotlib

Adding a Computer Vision project

Hello Team!
I would like to add a Snake's And Doughnuts game which works on Computer Vision using OpenCV module. Please assign me this issue

Array Operation Python

Want to create a menu driven array in python using list and perform basic operations on it.

Predict Future Sales using Machine Learning

  1. Let's visualize the time-series elements of the data to understand the patterns.
  2. The input dimension of the model learned with Train data should be well thought out and predicted with Test data.
  3. The task is to forecast the total amount of products sold in every shop for the test set. Note that the list of shops and products slightly changes every month. Creating a robust model that can handle such situations is part of the challenge.

Dataset:
https://www.kaggle.com/c/competitive-data-science-predict-future-sales/data

Assign me this issue under Hacktoberfest'21.

Olympics Medals Data Visualization in Python

This is a beginner-level project that I've done. It includes basic file handling and it demonstrates the use of different imported modules. It uses Matplotlib.pyplot for data visualization. I have created different graphs, plot and subplots to display the tabular data in better format.
Thus I request you to accept my PR for the same.
Thank you.

Unfortunately this repo got excluded from project

Have you tried contacting them?
There was no spam here and I believe all were genuine contributions.
Anyways I don't think you can do much in such cases as its not in your hand.

Eager to learn and contribute more.
Thanks.

Find Pivot Index- Complexity O(n)

Given an array of integers nums, calculate the pivot index of this array.

The pivot index is the index where the sum of all the numbers strictly to the left of the index is equal to the sum of all the numbers strictly to the index's right.

If the index is on the left edge of the array, then the left sum is 0 because there are no elements to the left. This also applies to the right edge of the array.

Return the leftmost pivot index. If no such index exists, return -1.

Example-
Input: nums = [1,7,3,6,5,6]

Output: 3

Explanation:
The pivot index is 3.
Left sum = nums[0] + nums[1] + nums[2] = 1 + 7 + 3 = 11
Right sum = nums[4] + nums[5] = 5 + 6 = 11

Merge two sorted linked lists

Hey, I want to add a program that merges two sorted linked lists into one. Please assign me this issue for hacktoberfest 2021.

Subarray with 0 sum- Complexity O(n)

Given an array of integers arr, print Yes or No depending upon whether there is a subarray present with 0-sum or not.

A subarray is a contiguous subsequence of the array.

Example :
Input:
5
4 2 -3 1 6

Output:
Yes

Explanation:
2, -3, 1 is the subarray with sum 0.

Two Sum II - Input array is sorted

Given a 1-indexed array of integers numbers that is already sorted in non-decreasing order, find two numbers such that they add up to a specific target number. Let these two numbers be numbers[index1] and numbers[index2] where 1 <= first < second <= numbers.length.

Return the indices of the two numbers, index1 and index2, as an integer array [index1, index2] of length 2.

The tests are generated such that there is exactly one solution. You may not use the same element twice.

Example 1:
Input: numbers = [2,7,11,15], target = 9

Output: [1,2]

Explanation: The sum of 2 and 7 is 9. Therefore index1 = 1, index2 = 2.

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.