题目描述:
LeetCode 389. Find the Difference
Given two strings s and t which consist of only lowercase letters.
String t is generated by random shuffling string s and then add one more letter at a random position.
Find the letter ...
最后更新于 .
LeetCode 389. Find the Difference
Given two strings s and t which consist of only lowercase letters.
String t is generated by random shuffling string s and then add one more letter at a random position.
Find the letter ...
最后更新于 .
LeetCode热身赛是LeetCode举办的第一场比赛,共3道题目,比赛时长24小时。
比赛链接:https://leetcode.com/contest/warm-up-contest/
题解列表:
LeetCode 386. Lexicographical Numbers
LeetCode 387. First Unique Character in a String
LeetCode 388. Longest Absolute File Path
最后更新于 .
LeetCode 388. Longest Absolute File Path
Suppose we abstract our file system by a string in the following manner:
The string "dir\n\tsubdir1\n\tsubdir2\n\t\tfile.ext"
represents:
dir subdir1 subdir2 file.ext
The directory dir ...
最后更新于 .
LeetCode 387. First Unique Character in a String
Given a string, find the first non-repeating character in it and return it's index. If it doesn't exist, return -1.
Examples:
s = "leetcode" return 0. s = "loveleetcode", return 2.
Note: You ...
最后更新于 .
LeetCode 386. Lexicographical Numbers
Given an integer n, return 1 - n in lexicographical order.
For example, given 13, return: [1,10,11,12,13,2,3,4,5,6,7,8,9].
Please optimize your algorithm to use less ...