Skip to content

Instantly share code, notes, and snippets.

View Bharathbrothers's full-sized avatar
🏠
Working from home

BHARATH KUMAR GOUD SATHURI Bharathbrothers

🏠
Working from home
View GitHub Profile
@Bharathbrothers
Bharathbrothers / about.md
Last active September 14, 2019 05:30
About me

Bharath Sathuri

Bachelor's in Computer Science at SNIST Hyderabad

Budding Data Engineer

An Intermediate Web and Android Developer

@Bharathbrothers
Bharathbrothers / Text-summarization.py
Created May 3, 2019 10:30 — forked from edubey/Text-summarization.py
Text Summarizer in Python
#!/usr/bin/env python
# coding: utf-8
from nltk.corpus import stopwords
from nltk.cluster.util import cosine_distance
import numpy as np
import networkx as nx
def read_article(file_name):
file = open(file_name, "r")
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Bharathbrothers
Bharathbrothers / CP1.md
Created November 20, 2018 12:20 — forked from sharmaeklavya2/CP1.md
Getting started with Competitive Programming

Starting out with Competitive Programming

(This guide is meant for beginners. If you have solved 100+ problems and are looking for guidance on how to solve problems involving algorithms and data structures, this document is not for you.)

Competitive Programming is an interesting activity which mixes problem solving with programming. It is not only enjoyable but also very demanded in placements. Competitive programming will make you very good at writing efficient programs quickly.

@Bharathbrothers
Bharathbrothers / Unique.java
Created November 13, 2018 02:42
How to generate unique random numbers in Java?
ArrayList<Integer> array = new ArrayList<>(4);
ArrayList<Integer> input = new ArrayList<>(4);
for(int i=0;i<10;i++){
array.add(i);
}
Collections.shuffle(array);
for(int j=0;j<4;j++){
input.add(array.get(j));