摘要:
版权声明:本文为博主原创文章,未经博主允许不得转载。 一、问题描述 Write a function to find the longest common prefix string amongst an array of strings. If there is no common prefix, 阅读全文
摘要:
版权声明:本文为博主原创文章,未经博主允许不得转载。 一、问题描述 Roman numerals are represented by seven different symbols: I, V, X, L, C, D and M. Given a roman numeral, convert it 阅读全文
摘要:
版权声明:本文为博主原创文章,未经博主允许不得转载。 一、问题描述 Determine whether an integer is a palindrome. An integer is a palindrome when it reads the same backward as forward. 阅读全文
摘要:
版权声明:本文为博主原创文章,未经博主允许不得转载。 一、问题描述 Given a 32-bit signed integer, reverse digits of an integer. 意思是给你一个32位有符号的整数,求这个整数的反转数字。 二、生词 signed adj /saɪnd/ 有符 阅读全文
摘要:
版权声明:本文为博主原创文章,未经博主允许不得转载。 一、问题描述 Given a string, find the length of the longest substring without repeating characters. 意思是给你一个字符串,找到没有重复字符的最长字串。 二、生 阅读全文
摘要:
版权声明:本文为博主原创文章,未经博主允许不得转载。 一、问题描述 You are given two non-empty linked lists representing two non-negative integers. The digits are stored in reverse or 阅读全文