Giter Site home page Giter Site logo

developertom223 / promgramming-problems Goto Github PK

View Code? Open in Web Editor NEW

This project forked from silencehvk/brush-question

0.0 1.0 0.0 24 KB

:books: :coffee: This is code examples used to record programming problems(这是用于记录编程问题的代码示例)

C# 27.19% JavaScript 71.17% Python 1.63%

promgramming-problems's Introduction

Promgramming Problems

This is code examples used to record programming problems.

Programming problems mainly from LeetCode, Codewars and some programming books, the use of C#, JavaScript and Python to achieve programming effect.

If you have a better idea of how to solve problems, please share with us in the issues and share the code with you if you can.
I hereby express my heart-felt gratitude.

background image

Problems List

No. Title Title Form Difficulty Solution
1 Two Sum LeetCode Easy C#,JavaScript,Python
2 Add Two Numbers LeetCode Medium C#, JavaScript
3 Longest Substring Without Repeating Characters LeetCode Medium C#, JavaScript
4 Median of Two Sorted Arrays LeetCode Hard C#, JavaScript
5 Longest Palindromic Substring LeetCode Medium JavaScript

Problems Description

Two Sum

Given an array of integers, return indices of the two numbers such that they add up to a specific target.

You may assume that each input would have exactly one solution, and you may not use the same element twice.

Example:

    Given nums = [2, 7, 11, 15], target = 9,
    Because nums[0] + nums[1] = 2 + 7 = 9,
    return [0, 1].

Solution: C#, JavaScript, Python

Add Two Numbers

You are given two non-empty linked lists representing two non-negative integers. The digits are stored in reverse order and each of their nodes contain a single digit. Add the two numbers and return it as a linked list.

You may assume the two numbers do not contain any leading zero, except the number 0 itself.

Example:

    Input: (2 -> 4 -> 3) + (5 -> 6 -> 4)
    Output: 7 -> 0 -> 8
    Explanation: 342 + 465 = 807.

Solution: C#, JavaScript

Longest Substring Without Repeating Characters

Given a string, find the length of the longest substring without repeating characters.

Examples:

    Given "abcabcbb", the answer is "abc", which the length is 3.

    Given "bbbbb", the answer is "b", with the length of 1.

    Given "pwwkew", the answer is "wke", with the length of 3. 
    
    Note that the answer must be a substring, "pwke" is a subsequence and not a substring.

Solution: C#, JavaScript

Median of Two Sorted Arrays

There are two sorted arrays nums1 and nums2 of size m and n respectively.

Find the median of the two sorted arrays. The overall run time complexity should be O(log (m+n)).

Example 1:

    nums1 = [1, 3]
    nums2 = [2]

    The median is 2.0

Example 2:

    nums1 = [1, 2]
    nums2 = [3, 4]

    The median is (2 + 3)/2 = 2.5

Solution: C#, JavaScript

Longest Palindromic Substring

Given a string s, find the longest palindromic substring in s. You may assume that the maximum length of s is 1000.

Example 1:

    Input: "babad"

    Output: "bab"

    Note: "aba" is also a valid answer.

Example 2:

    Input: "cbbd"

    Output: "bb"

Solution: JavaScript

promgramming-problems's People

Watchers

James Cloos avatar

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.