ziming-liu / leecode_start_from_12-2020

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

leecode_start_from_12-2020

String problem


14/12/2020

  1. Length of Last Word

simple C++ solution

15/12/2020

  1. String Matching in an Array

realize simple C++ solution

16/12/2020

  1. Reverse Vowels of a String

18/12/2020

Create 1323. Maximum 69 Number.cpp

19/12/2020

  1. Jewels and Stones.cpp

21/12/2020

  1. Next Greater Element II

22/12/2020

  1. Longest Substring Without Repeating Characters

25/12/2020

  1. Add Strings 注意char int之间及时转换

28/12/2020

  1. Roman to Integer

1/1/2021

  1. Valid Palindrome
  2. First Unique Character in a String

2/1/2021

  1. Implement strStr() 实际是字符sub string匹配问题,返回index。 注意 开头 特例情况

  2. Valid Parentheses Input: s = "()[]{}" Output: true

使用stack容器,左符号存入stack,右符号时,判断,stack中有左符号 相消, 否则 返回false(不对称,失败)

6/1/2021

  1. Remove Duplicates from Sorted Array

7/1/2021

  1. Move Zeroes

Array problems

14/1/2021
  1. Contains Duplicate.cpp mapping解决
14/03/2021
  1. Middle of the Linked List 快慢指针

About


Languages

Language:C++ 65.1%Language:Python 34.9%