Giter VIP home page Giter VIP logo

gfg-potd's Introduction

my banner


πŸ˜„ About Me

  • πŸŽ“ I am a Software Engineer messing around with backend technologies.
  • πŸ”­ I am currently working on different personal projects and learning new stuff.
  • πŸ’¬ If you have any question/feedback, please do not hesitate to reach out to me!

Manas Rawat | LinkedIn Manas Rawat | Linktree


πŸ‘¨β€πŸ’» My projects

  • Tagify - A Windows Application made using C# for tagging files with custom tags and searching them on basis of tags.
  • Quiz Land - A Full Stack Web Application made using NodeJS, HTML and CSS which allows anyone to register as an admin and host their own quizzes on the platform and share link links with the participants to join quizzes.
  • CF GetRating Browser Extension - A browser extension made with JavaScript for Codeforces which helps users to see the problem rating without enabling problem tags which was not possible before.
  • Random Tools - A Full Stack Web Application made using NodeJS, HTML and CSS having some Random Tools made using JavaScript.

πŸ’Ό Technical Skills


πŸ“œ Coding Activity

From: 22 August 2024 - To: 21 September 2024

Total Time: 82 hrs 16 mins

TypeScript   63 hrs 51 mins  β–°β–°β–°β–°β–°β–°β–°β–°β–°β–°β–°β–°β–°β–°β–°β–°β–°β–°β–°β–±β–±β–±β–±β–±β–±   77.60 %
JavaScript   17 hrs 2 mins   β–°β–°β–°β–°β–°β–±β–±β–±β–±β–±β–±β–±β–±β–±β–±β–±β–±β–±β–±β–±β–±β–±β–±β–±β–±   20.72 %
Text         1 hr            β–±β–±β–±β–±β–±β–±β–±β–±β–±β–±β–±β–±β–±β–±β–±β–±β–±β–±β–±β–±β–±β–±β–±β–±β–±   01.23 %
Other        11 mins         β–±β–±β–±β–±β–±β–±β–±β–±β–±β–±β–±β–±β–±β–±β–±β–±β–±β–±β–±β–±β–±β–±β–±β–±β–±   00.24 %
Bash         5 mins          β–±β–±β–±β–±β–±β–±β–±β–±β–±β–±β–±β–±β–±β–±β–±β–±β–±β–±β–±β–±β–±β–±β–±β–±β–±   00.11 %

πŸš€ Coding Heatmap


πŸ“ˆ GitHub Stats

Manas’s github stats


πŸ‘€ Visitors

Visitors

gfg-potd's People

Contributors

importlogic avatar mrpankajpandey avatar saranshbangar avatar soorjya avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

gfg-potd's Issues

[Feature] Add Issue Section Template

. Add issue section template so that most users can easily raise an issue which is helpful because they already know what and how to raise an issue

Like this it's amazing features

image

plz help in my code soln bhaiya! 10 test cases are passed but n=5473578 is giving one character wrong.

10 test cases are passed but n=5473578 is giving one character wrong.
soln..

class Solution{
    public:
    void clm_name(long long int n,string&ans,vector<char>&alpha){
        if(n<=26){
            ans.push_back(alpha[n-1]);
            return;
        }
        long long clm_no=n/26;
        int row_no=n%26;
        clm_name(clm_no,ans,alpha);
        ans.push_back(alpha[row_no-1]);
        if(row_no==0)ans.push_back('Z');
    }
    string colName (long long int n)
    {   vector<char>alpha(26);
        int d=65;
        for(int i=0;i<26;i++)
        alpha[i]=d+i;
        string ans;
        clm_name(n,ans,alpha);
        return ans;
    }
};

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.