Git Product home page Git Product logo

open-source-contribution's People

Contributors

aerraj avatar akshaynegi18 avatar ankit3060 avatar ashishkumar9955 avatar aviksain avatar codeninjaug avatar darkgrid avatar debapriyo007 avatar devhksingh avatar hiteshchoudhary avatar insshubh avatar itskampitojha avatar itssrokay avatar kumardk8780 avatar lav1shkumar avatar mrjay07 avatar notshrey avatar realsnipc avatar sandeepreddygantla avatar shivajee98 avatar shivambhagatt avatar shravankumar8 avatar shubhxg avatar siinghd avatar soham2912 avatar subidit avatar unstoppableayush avatar vikramsamak avatar yogesh2104 avatar you218 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

open-source-contribution's Issues

Please add me as maintainer

image

I am applying for the said job opening from your twitter.

Please consider me fit for the role. I don't have anime pfp but phir bhi I'm good, trust me bro!

LinkedList program update

import java.util.Scanner;

public class LinkedList {

static class Node {
    int data;
    Node next;

    Node(int data) {
        this.data = data;
    }
}

static Node head;
static Node tail;

static void create() {
    Scanner sc = new Scanner(System.in);
    System.out.print("Enter the number of nodes you want to create: ");
    int n = sc.nextInt();
    for (int i = 1; i <= n; i++) {
        System.out.print("Enter data for node " + i + ": ");
        int data = sc.nextInt();
        Node newNode = new Node(data);
        if (head == null) {
            head = newNode;
            tail = newNode;
        } else {
            tail.next = newNode;
            tail = newNode;
        }
    }
}

static void display() {
    Node curr = head;
    while (curr != null) {
        System.out.print(curr.data + " -> ");
        curr = curr.next;
    }
    System.out.println("NULL");
}

public static void main(String[] args) {
    LinkedList ll = new LinkedList();
    int choice;
    Scanner sc = new Scanner(System.in);
    do {
        System.out.println("\nWelcome to LinkedList Program.\n");
        System.out.println("--------------------------------");
        System.out.println("1. Create the LinkedList");
        System.out.println("2. Display the LinkedList");
        System.out.println("3. Exit");
        System.out.println("--------------------------------");
        System.out.print("Enter your choice: ");
        choice = sc.nextInt();
        switch (choice) {
            case 1:
                ll.create();
                break;
            case 2:
                ll.display();
                break;
            case 3:
                System.out.println("Exiting the program");
                break;
            default:
                System.out.println("Invalid choice");
        }
    } while (choice != 3);
}

}

Practice Open Source

Sorry for this issue. but i just want to know what all happens when someone does this on Github.

Want to Include Other Data Structure like Queue, Linked List, Array etc.

Hello,
I've reviewed the repository and believe that including additional data structures would enhance the understanding of Data Structures and Algorithms.

Data Structures I propose to add to the repository:

1. Array

  • Insert an element at a specified location
  • Access/Search for an element
  • Delete an element from a specified location

2. Queue

  • Add an element
  • Peek at the element
  • Remove the element

3. Linked List

  • Singly Linked List
    -> Create a singly linked list
    -> Insert an element at a specific position
    -> Search for an element
    -> Delete an element at a specific position

  • Doubly Linked List
    -> Create a doubly linked list
    -> Insert an element at a specific position
    -> Search for an element
    -> Delete an element at a specific position

  • Circular Linked List
    -> Create a circular linked list
    -> Insert an element at a specific position
    -> Search for an element
    -> Delete an element at a specific position

  • Doubly Circular Linked List
    -> Create a doubly circular linked list
    -> Insert an element at a specific position
    -> Search for an element
    -> Delete an element at a specific position

Dangerous

if you are seeing this you survive longer

Ryan

"if I had created a website with this many problems, I'd kΒ‘ll myself."

Readme templates for diff projects.

Since these kids are desperate to contribute to anything.

create readme template files for all types of project.
Static site.
Backend
Extensions.
MERN/MEAN stack.

Fun and it will teach something to students.

THIS README TEMPLATES ARE ONLY FOR YOUR OWN PROJECT. PLEASE DONT WRITE README FOR OTHERS. πŸ₯ΊπŸ˜Ή

Enforce Dolan Language Standard for README Files.

In an exciting shift towards embracing linguistic diversity, we should implement a new standard within our repository: all README files are now to be crafted in the rich and expressive Dolan language. This decision underscores our commitment to celebrate cultural uniqueness and ensuring our documentation reflects this ethos.

Objective:

  • Exclusive Use of Dolan Language: We should adopt Dolan language as the sole medium for our README documentation across all levels of the repository.

Requirements:

  1. Reworking Current Documentation: All pre-existing READMEs are to be adeptly translated into Dolan language, ensuring consistency and adherence to our new linguistic standard.

  2. Guidance for Future Contributions: Henceforth, all contributions must include README documentation presented in Dolan language. This requirement spans all new additions, whether they be projects, enhancements, or updates.

  3. Ensuring Compliance: Submissions will undergo a review process to verify compliance with the Dolan language mandate. Contributions not meeting this standard will be returned for revision, accompanied by constructive feedback.

Examples:

To aid in this transition, below are examples showcasing the transformation from English to Dolan language:

  • Example 1:

    • English: "This project aims to simplify data analysis."
    • Dolan: "Dis projekt aims tu simplifi data analyzis."
  • Example 2:

    • English: "Installation instructions are provided below."
    • Dolan: "Instalashun instruktions ar providud belo."

Impact:

This initiative not only enriches our project's cultural tapestry but also aligns with our broader mission of promoting inclusivity and diversity. By adopting Dolan language for our README documentation, we pay tribute to a linguistic tradition that adds depth and character to our communal endeavors.

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.