Giter Club home page Giter Club logo

learndsa's Introduction

Hi ๐Ÿ‘‹, I'm Saptarshi Sarkar

A Simple developer with supernatural power ๐Ÿ˜Ž


saptarshisarkar20

saptarshisarkar20

๐Ÿ‘จโ€๐Ÿ’ป ย About Me :

I am a Full Stack Developer from India.

Connect with me:

@iamss_ss https://www.linkedin.com/in/saptarshi-sarkar-aa20781b1/ https://www.facebook.com/saptarshi.sarkar.3194/ i__am_ss https://youtube.com/channel/UCkCSWT1_Lj1NGkIlNnG49vg i_am_ss @saptarshi2017cob i_am_ss saptarshi2017cob

Tools:

arduino bash c figma git heroku illustrator linux matlab photoshop postman

Frontend

React Bootstrap CSS3 HTML5 JavaScript Illustrator Node.js Premiere Pro Express.js Photoshop MongoDB PowerShell Lightroom After Effects

Backend

PHP MongoDB Linux Nginx Python Java Express.js Bash Node.js c cplusplus PowerShell Flask MySQL

DevOps

Linux Git Bash PowerShell GitLab

saptarshisarkar20

ย saptarshisarkar20

saptarshisarkar20



Connect with me



learndsa's People

Contributors

aluvaja avatar arora-bhumika avatar darknoivern avatar debarpan08 avatar harshdev625 avatar i-am-ss avatar iamssss avatar mahadev-23 avatar mehakgupta1103 avatar mohit-kukreja-2002 avatar nidhiparab avatar purbendu avatar saptarshisarkar20 avatar shivam250702 avatar shubhamkumar47 avatar sneha3215 avatar subhojit666 avatar subramanyaks avatar techseason avatar vsiddharth365 avatar what-should-be-my-username avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

learndsa's Issues

Write a function in any programming language to solve the below problem 3SUM

What to Do?

Star ๐ŸŒŸ this repo

Fork the repo

Location
Go to folder Pull Here/LeetCode/3SUM

File name
Take your GitHub username id like "hrithik339", "hacker-boy", etc or anything which you have.
Then add a programming language extension after this (link for C++ add .cpp and for python add.py)
Only files with the correct file name will be accepted


Problem Statement

Given an integer array nums, return all the triplets [nums[i], nums[j], nums[k]] such that i != j, i != k, and j != k, and nums[i] + nums[j] + nums[k] == 0.

Notice that the solution set must not contain duplicate triplets.

Example 1:

Input: nums = [-1,0,1,2,-1,-4]
Output: [[-1,-1,2],[-1,0,1]]

Explanation:
nums[0] + nums[1] + nums[2] = (-1) + 0 + 1 = 0.
nums[1] + nums[2] + nums[4] = 0 + 1 + (-1) = 0.
nums[0] + nums[3] + nums[4] = (-1) + 2 + (-1) = 0.
The distinct triplets are [-1,0,1] and [-1,-1,2].
Notice that the order of the output and the order of the triplets does not matter.

Example 2:

Input: nums = [0,1,1]
Output: []

Explanation: The only possible triplet does not sum up to 0.

Example 3:

Input: nums = [0,0,0]
Output: [[0,0,0]]

Explanation: The only possible triplet sums up to 0.

Constraints:

  • 3 <= nums.length <= 3000
  • -105 <= nums[i] <= 105

Complete the following function

class Solution {
public:
    vector<vector<int>> threeSum(vector<int>& nums) {
        
    }
};

Write a function in any programming language to solve the below problem Palindrome Number

What to Do?

Star ๐ŸŒŸ the repo

Fork the repo

Location
Go to folder
Solve Here/LeetCode/PalindromeNumber

File name
Take your GitHub username id like "hrithik339", "hacker-boy", etc or anything which you have.
Then add a programming language extension after this (link for C++ add .cpp and for python add.py)
Only files with the correct file name will be accepted


Problem Statement

Given an integer x, return true if x is palindrome integer.

An integer is a palindrome when it reads the same backward as forward.

For example, 121 is a palindrome while 123 is not.

Example 1:

Input: x = 121
Output: true

Explanation: 121 reads as 121 from left to right and from right to left.

Example 2:

Input: x = -121
Output: false

Explanation: From left to right, it reads -121. From right to left, it becomes 121-. Therefore it is not a palindrome.

Example 3:


Input: x = 10
Output: false

Explanation: Reads 01 from right to left. Therefore it is not a palindrome.

Constraints:

-231 <= x <= 231 - 1

Follow up: Could you solve it without converting the integer to a string?

Function

class Solution {
public:
    bool isPalindrome(int x) {
        
    }
};

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.