Skip to content
View adist98's full-sized avatar
  • Bangalore, India
Block or Report

Block or report adist98

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
adist98/README.md

Hi there 👋

I am Aditya, a competitive programmer and a developer.

  • 👯 I’m looking to collaborate on open source projects [JavaScript, C++]
  • 🌱 I am currently learning JWT
  • 💬 Ask me about Algorithms, Node JS, React JS, Express JS
  • 📫 How to reach me: https://www.linkedin.com/in/ason98/

adist98

Pinned

  1. VAS-Code VAS-Code Public

    Python

  2. DigitDP.cpp DigitDP.cpp
    1
    // DigitDP variation for calculating the sum of digits - CPCRC1C on SPOJ
    2
    // Code inspired by GeeksforGeeks - coded by adist98
    3
    // Given two integers a and b. The task is to print
    4
    // sum of all the digits appearing in the
    5
    // integers between a and b
  3. Matrix_exponentiation.cpp Matrix_exponentiation.cpp
    1
    // general implementation of matrix exponentiation .. ..
    2
    // implementation code by adist98
    3
    #include<bits/stdc++.h>
    4
    
                  
    5
    using namespace std;