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

Block or report chaithrakc

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

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

Report abuse

Pinned

  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

  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
    '''