Skip to content
View chaithrakc's full-sized avatar
:octocat:
coding...
:octocat:
coding...

Block or report chaithrakc

Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. credit_card_default_prediction credit_card_default_prediction Public

    Analyzing the likelihood of credit card delinquency without using credit scores or credit history

    Jupyter Notebook

  2. news-summarization news-summarization Public

    Generating short length description of news articles

    Jupyter Notebook 1 2

  3. sentiment-analysis-covid-news-articles sentiment-analysis-covid-news-articles Public

    Predicting sentiment polarity of COVID-19 news articles using Machine Learning and Deep Learning models

    Jupyter Notebook 1

  4. mysql_queries mysql_queries Public

    SQL Practice

    SQL 1

  5. string manipulation problem string manipulation problem
    1
    '''
    2
    Input string is a combination of alphabets (A-Z all CAPs) and numbers (0-9) in any order e.g. string = 'LLLG525FFR3W88' 
    3
    Out put should be ['LLL','G','525','FF','R','3','W','88'] 
    4
    i.e. same alphabets will be grouped together, but numbers will remain ungrouped =>'525' will not be '5','2','5'
    5
    '''