Git Product home page Git Product logo

leetcode's People

Contributors

arjhe avatar

Watchers

 avatar  avatar

leetcode's Issues

[C++] (7_ReverseInteger) std::out_of_range at memory location 0x00007FFCC6B84F99

#include <iostream>
#include <string>
using namespace std;

int reverse(int x) {
    if (x == 0)
        return 0;
    string s = to_string(x);
    string res;
    
    // just like scan from rightside
    bool isPos = isdigit(s[0]);
    s = isPos ? s : s.substr(1, s.length() - 1);
    int l = s.length();
    bool islastconstZero = (s[s.length()-1] == '0') ? true : false ;
    int i = 0;
    while (i < l) {
        islastconstZero = (islastconstZero && s[s.length() - 1 - i] == '0') ? true : false;
        if (!islastconstZero)
            res += s[s.length() - 1 - i];
        i++;
    }

    res = isPos ? res : '-' + res;
    return stoi(res);
}

int main() {
    cout << reverse(1534236469) << endl;
    return 0;
}

thorw error: out_of_range at memory location 0x00007FFCC6B84F99

Longest Substring Without Repeating Characters

3. Longest Substring Without Repeating Characters

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

Example 1:

Input: "abcabcbb"
Output: 3 
Explanation: The answer is "abc", with the length of 3. 

Example 2:

Input: "bbbbb"
Output: 1
Explanation: The answer is "b", with the length of 1.

Example 3:

Input: "pwwkew"
Output: 3
Explanation: 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.

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.