Giter VIP home page Giter VIP logo

programming_hactoberfest23's People

Contributors

aheri7 avatar alisha-786 avatar ankitagupta2002 avatar blindaks avatar chiragchandel2000 avatar dikshant182004 avatar fardeencodeiiest avatar gargdeepanshi avatar isaksham2003 avatar ishita3513 avatar legend015 avatar livisha avatar lokeshwaraprasad avatar mahesh0911 avatar mahi5902 avatar mdsarfarazalam840 avatar mhdsabah avatar musaibbatghar avatar nayanprakash11 avatar nicksahu avatar nida242004 avatar nikhil-2002 avatar piyush-gambhir avatar praneesh-sharma avatar priyanshtiwari001 avatar rahul12043 avatar ruturaj-gh avatar sam-bhav-20 avatar shiva1718 avatar srujana2199 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

programming_hactoberfest23's Issues

Pattern Programs

Hi @Nikhil-2002 , I would like to add the pattern programs in this and want to be a part of your repository. Kindly please assign this issue under the hacktoberfest label.

minimum-sum-of-four-digit-number-after-splitting-digits

You are given a positive integer num consisting of exactly four digits. Split num into two new integers new1 and new2 by using the digits found in num. Leading zeros are allowed in new1 and new2, and all the digits found in num must be used.

For example, given num = 2932, you have the following digits: two 2's, one 9 and one 3. Some of the possible pairs [new1, new2] are [22, 93], [23, 92], [223, 9] and [2, 329].
Return the minimum possible sum of new1 and new2.

Example 1:

Input: num = 2932
Output: 52
Explanation: Some possible pairs [new1, new2] are [29, 23], [223, 9], etc.
The minimum sum can be obtained by the pair [29, 23]: 29 + 23 = 52.
Example 2:

Input: num = 4009
Output: 13
Explanation: Some possible pairs [new1, new2] are [0, 49], [490, 0], etc.
The minimum sum can be obtained by the pair [4, 9]: 4 + 9 = 13.

Constraints:

1000 <= num <= 9999

Take input in String form and convert to array format for operation

You have to take input of an array of integers, but you will not be provided the number of input(n) you can put. But directly the input array. This issue can be faced in many coding contests and candidates can panic about how to take input. So, the solution to this problem can help many people.

count-the-number-of-complete-components

You are given an integer n. There is an undirected graph with n vertices, numbered from 0 to n - 1. You are given a 2D integer array of edges where edges[i] = [ai, bi] denotes that there exists an undirected edge connecting vertices ai and bi.

Return the number of complete connected components of the graph.

A connected component is a subgraph of a graph in which there exists a path between any two vertices, and no vertex of the subgraph shares an edge with a vertex outside of the subgraph.

A connected component is said to be complete if there exists an edge between every pair of its vertices.

Check if a number is an Armstrong Number

A number is an Armstrong number if the sum of its own digits raised to the power number of digits gives the number itself.
For example,371 is a three digit Armstrong number => 371 = 3^3 + 7^3 + 1^3
For example, 1634 is a four digit Armstrong number => 1634 = 1^4 + 6^4 + 3^4 + 4^4

Add Kadane's Algorithm in C++

Kadane's algorithm is a dynamic programming approach used to solve the maximum subarray problem, which involves finding the contiguous subarray with the maximum sum in an array of numbers.

Please assign this issue to me under Hacktoberfest.

I would like add binary search algorithm

Here I want to add a real-life application of computational algorithm like binary search ,which is commonly used for searching for a target element in a sorted array.

Exclude from Hacktoberfest23

As I opened my PR regarding one of the issues on this repo, it showed on the Hacktoberfest Official website that the PR won't be included in the Hacktoberfest.

Screenshot 1 :

Screenshot 2023-10-21 at 00 26 14

Screenshot 2 :

Screenshot 2023-10-21 at 00 25 30

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.