Code Monkey home page Code Monkey logo

suriyaavijay / code-dump Goto Github PK

View Code? Open in Web Editor NEW
120.0 2.0 840.0 119.02 MB

Make your first PR! Add your profile, a blog, or any program under any language (hello-world program to anything) or update the existing one. Just make sure to add the file under the correct directory. Happy open source contributing!

Home Page: https://hacktoberfest.com/

Python 0.28% JavaScript 30.46% HTML 0.34% CSS 1.27% C++ 0.49% Java 0.17% C 0.02% Assembly 0.01% C# 0.01% Vue 0.16% SCSS 0.16% Solidity 0.04% Jupyter Notebook 56.58% Kotlin 0.01% Swift 0.01% Objective-C 0.01% Dart 0.05% Roff 9.73% TypeScript 0.11% PHP 0.14%
first-issue hacktober hacktoberfest hacktoberfest-accepted hacktoberfest-starter hacktoberfest2023 good-first-issue

code-dump's Introduction

Hi there ๐Ÿ‘‹

Hello , I am Suriyaa ๐Ÿ‘‹


Coding

I am currently a Final Year student at Anna University, MIT Campus pursuing my BE degree in Computer Science and Engineering. Here to upload my projects and to learn new things


Profile Views

visitor badge


Worked with:

About Me:

๐Ÿ“ Pursuing Computer Science and Engineering from Anna University, MIT Campus, Chennai.

๐Ÿ’ป I'm Interested in Programming, Web development and Machine Learning.

๐Ÿค Looking forward to collaborate on open source projects and hackathons.

โœ… Checkout my HackerRank Profile - HackerRank

โœ… Checkout my LinkedIn Profile - LinkedIn


Gitartwork


My Github Stats:

streak image

Productivity Stats:

1





Get in Touch! ๐Ÿ“ฌ


ย ย ย  ย ย ย  ย ย ย 

OnePiece_Luffy

Chennai, India


Credits: Suriyaa

Last Edited on: 25/05/23

code-dump's People

Contributors

alpha2lucifer avatar bharath-kumarreddy avatar competitiveblood avatar crutosj avatar cu-sanjay avatar ddevilz avatar debosmitachatterjee24 avatar debraj-kundu avatar deeptejd avatar dev04sa avatar devesh1808 avatar ferdianarid avatar gva-cse avatar gyanshu-kumar avatar itsrushikesh avatar jv-2701 avatar khushboogupta2111 avatar martcpp avatar muhammad-anus-developer avatar odeyiany2 avatar pypimo avatar rajnikant1021 avatar sonjevilas avatar sridharsolaris avatar suriyaavijay avatar tusharban42 avatar umeshc32 avatar vedantsrivastava42 avatar vermachetna36 avatar yash2934 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  avatar

code-dump's Issues

feat: Create Hangman Game using C++

Issue Title: Create Hangman Game using C++

Issue Description

I propose to develop a Hangman Game in C++ for this repository. Hangman is a classic word-guessing game that provides an entertaining and interactive experience for users. Implementing it in C++ will offer an opportunity to enhance the project's collection of C++ programs and create an engaging game for the community.

Additional Information

If there are specific guidelines, requirements, or design preferences for this contribution, please provide the necessary details to ensure a successful integration of the project. Your guidance and feedback on this addition are highly appreciated.

Let's work together to bring the Hangman Game to life in C++!

Adding a Project of RegEx clone

I want to add a clone of regex website which take your regular expression and take the strings which matches the regex, the project is made with html at frontend and flask at the backend.

@SuriyaaVijay please assign me in this project.

Number System Convertor

I want to add a project in the web development folder.
In this project we can input decimal number and we will get the number in different number system.

no contributor.md file

i want to add a contributor file that will allow contributor to displace their details

Complete Wikipedia

Wikipedia , user can search any thing and he can get response based on his search

example :

image

Please consider and assign this under Hacktoberfest_23 , As I am interested to contribute my self : )

Add Database folder

Add a database folder that contains some information regarding the same.

Please assign this to me under Hacktoberfest 2023.

Added Python n-queen problem

Add N queen Problem Algorithm under the Python folder under the programming languages folder.

@SuriyaaVijay I want to work on this issue, please assign this to me under hacktoberfest.

Pattern problem

I want to solve this pattern problem

                      1 
                2 1   1 2 
            3 2 1       1 2 3 
        4 3 2 1           1 2 3 4 
            3 2 1       1 2 3 
                2 1   1 2 
                    1

@SuriyaaVijay Please assign this issue under hacktober fest

Zigzag Conversion

The string "PAYPALISHIRING" is written in a zigzag pattern on a given number of rows like this: (you may want to display this pattern in a fixed font for better legibility)

P A H N
A P L S I I G
Y I R
And then read line by line: "PAHNAPLSIIGYIR"

Write the code that will take a string and make this conversion given a number of rows:

string convert(string s, int numRows);

Example 1:

Input: s = "PAYPALISHIRING", numRows = 3
Output: "PAHNAPLSIIGYIR"
Example 2:

Input: s = "PAYPALISHIRING", numRows = 4
Output: "PINALSIGYAHRPI"
Explanation:
P I N
A L S I G
Y A H R
P I
Example 3:

Input: s = "A", numRows = 1
Output: "A"

Constraints:

1 <= s.length <= 1000
s consists of English letters (lower-case and upper-case), ',' and '.'.
1 <= numRows <= 1000

I want to solve this problem under hacktoberfest
@SuriyaaVijay please assign me this issue

Median of two sorted arrays

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

I have already starred and forked the repo, please assign me this issue!
Thanks and Regards.

PYTHON CODE

Scrapping upcoming hackathons and events.
@SuriyaaVijay I want to work on this issue under hacktober fest.

Sorting Algorithms

I want to add the following sorting algorithms,

  1. Bubble Sort
  2. Selection Sort
  3. Insertion Sort
  4. Heap Sort
  5. Merge Sort
  6. Quick Sort

Please Assign me this issue and add the hacktoberfest2023 tags, I am interested to Contribute : )

Blockchain

Blockchain

I am a blockchain developer, I want to add a contracts folder in which I will add many contracts such as voting contracts, NFT contracts, ERC20 token contracts, and many more. So please send this issue to me

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.