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 / 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")
@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.