Code Monkey home page Code Monkey logo

hansajith98 / hacktoberfest2021-excluded Goto Github PK

View Code? Open in Web Editor NEW
62.0 0.0 264.0 15.38 MB

You can submit any PR and have SWAGS. Happy Hacktoberfest !

Home Page: https://hacktoberfest.digitalocean.com/

License: Creative Commons Zero v1.0 Universal

Python 9.79% Java 1.90% JavaScript 5.00% C++ 3.09% HTML 1.08% Hack 0.03% PHP 0.04% Ruby 0.32% CSS 1.04% C 1.47% Dart 1.00% Handlebars 0.13% Jupyter Notebook 74.88% R 0.13% Rust 0.11%
hacktoberfest hacktoberfest2021 hacktoberfest-2021 t-shirt swags digitalocean first-pull-request first-pull-request-and-commit hacktoberfest-accepted hacktoberfest-starter

hacktoberfest2021-excluded's Introduction

Hi ๐Ÿ‘‹, I'm Deshitha Hansajith

With basic concept of computer systems and programming, It is easy to done anything [On experience].

hansajith98

hansajith98

  • โšก Fun fact I love to make experimental things. My passionate with making things using Arduino raspberry. But I learning other stuff to follow job๐Ÿ˜.

Connect with me:

hansajith98 deshithahansaj1 deshitha-hansajith

Languages and Tools:

arduino c flutter java javascript mysql opencv php postgresql python selenium tensorflow

hansajith98

ย hansajith98

hansajith98

hacktoberfest2021-excluded's People

Contributors

0xsebin avatar avyayjain avatar danieledelgiudice avatar danish-faisal avatar deshitha98 avatar hansajith98 avatar harishtaa avatar heolcoder avatar kalyani02072003 avatar m-code12 avatar marcosfnsc avatar meksankalpa avatar muraliratsa avatar mushaf-nms avatar neetu561 avatar prabath03dot avatar rajiv14081998 avatar ravitejavelamuri avatar rezw4n avatar shambhuj071 avatar shanice981 avatar shayan-cyber avatar shrey8976 avatar singhharshit640 avatar smartsupun avatar smriti04501 avatar thinkjin99 avatar vanshika-11 avatar varshajose123 avatar winxter17 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

hacktoberfest2021-excluded's Issues

Torrent-Meta-Serch script

Hi,

I want to add a Python script which acts as a meta-searcher to query multiple Torrent-sites at once. I did this as a contribution during Hacktoberfest ^^

PR #275

Script to scrape Medium.com

I've created a small Python script to scrape articles from Medium.com to extend the available scripts in the Python subfolder for Hacktoberfest.

PR #277

No more pr to be accepted

Hii there first of all sorry for all the interested candidate who wants to contribute in this repo , Since as we all know many repo has been already excluded from hacktoberfest because of many acceptance of pr . That's why to save our already contributed member we should stop accepting any more pr in order to protect our community.

Spelling Corrector

Here will create a tkinter based GUI application which will allow user to correct the wrong spelling correctly.

Virtual Keyboard

Here will create a GUI based virtual keyboard using Python language.

New Script: Covid Tracker

The tracker will track cases, deaths and recovered cases worldwide and also in every country.
Can I work on this?

Updated code

#include
#include
using namespace std;

// here maxD represent the diameter of the tree
int maxD = -1 , maxNode = -1 ;
// maxNode represents node at maximum distance

// declaring the visited node as we will be using the DFS
int vis[8] ;

void createEdge( int a , int b , vector graph[] ){

 // creating undireted edges between the connected nodes
 graph[a].push_back(b) ;
 graph[b].push_back(a) ;

}

void DFS( vector graph[] , int node , int d )
{
// marking the node as visited
vis[node] = 1 ;

// if the distance from root is greater then maximum Distance then updating the maximum value of distance
// also storing the maxNode no. as this node is now at the farthest distance
if( d > maxD )
{
    maxNode = node ;
    maxD = d ;
}

 // applying the standard dfs 
for( auto x : graph[node] )
{
    if( vis[x] == 0 )
    {
        DFS( graph , x , d+1 ) ;
    }
}

}

int main()
{

// first creating the nodes of the graph
vector<int> graph[8] ;

// now creating the edges of the tree as shown in the image of  this article
createEdge( 1 , 2 , graph ) ;
createEdge( 2 , 3 , graph ) ;
createEdge( 3 , 7 , graph ) ;
createEdge( 2 , 4 , graph ) ;
createEdge( 4 , 5 , graph ) ;
createEdge( 4 , 6 , graph ) ;

 // Applyting DFS from node 1
 DFS( graph , 1 , 1 ) ;
 // we could have choosen any node in the graph but for simplicity we have choosen node 1

 // making every node unvisited as we will be applying DFS
 maxD = -1 ;
 for( int i = 1 ; i<=8 ; i++ )
 {
     vis[i] = 0 ;
 }
 
 // applying the dfs for the second time as this will give the diameter of the tree
 DFS( graph , maxNode , 1  ) ;

 // Now printing the maximum diameter of the tree
 cout<<maxD<<" is the diameter of the tree "<<endl;


return 0;

}

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.