上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 22 下一页
摘要: Write a function that takes a string as input and reverse only the vowels of a string. Example 1:Given s = "hello", return "holle". Example 2:Given s 阅读全文
posted @ 2016-05-08 22:00 YuriFLAG 阅读(122) 评论(0) 推荐(0)
摘要: Given two words (beginWord and endWord), and a dictionary's word list, find the length of shortest transformation sequence from beginWord to endWord, 阅读全文
posted @ 2016-04-30 21:30 YuriFLAG 阅读(119) 评论(0) 推荐(0)
摘要: Given two words (beginWord and endWord), and a dictionary's word list, find all shortest transformation sequence(s) from beginWord to endWord, such th 阅读全文
posted @ 2016-04-30 20:47 YuriFLAG 阅读(181) 评论(0) 推荐(0)
摘要: Given an directed graph, a topological order of the graph nodes is defined as follow: For each directed edge A -> B in graph, A must before B in the o 阅读全文
posted @ 2016-04-29 16:36 YuriFLAG 阅读(189) 评论(0) 推荐(0)
摘要: Clone an undirected graph. Each node in the graph contains a label and a list of its neighbors. OJ's undirected graph serialization: Nodes are labeled 阅读全文
posted @ 2016-04-29 15:22 YuriFLAG 阅读(189) 评论(0) 推荐(0)
摘要: Given an integer array with no duplicates. A max tree building on this array is defined as follow: The root is the maximum number in the array The lef 阅读全文
posted @ 2016-04-29 08:52 YuriFLAG 阅读(217) 评论(0) 推荐(0)
摘要: Given preorder and inorder traversal of a tree, construct the binary tree. 阅读全文
posted @ 2016-04-28 09:40 YuriFLAG 阅读(123) 评论(0) 推荐(0)
摘要: Given an array S of n integers, find three integers in S such that the sum is closest to a given number, target. Return the sum of the three integers. 阅读全文
posted @ 2016-04-27 08:43 YuriFLAG 阅读(171) 评论(0) 推荐(0)
摘要: Given a unsorted array with integers, find the median of it. A median is the middle number of the array after it is sorted. If there are even numbers 阅读全文
posted @ 2016-04-26 20:11 YuriFLAG 阅读(305) 评论(0) 推荐(0)
摘要: 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 sh 阅读全文
posted @ 2016-04-26 09:08 YuriFLAG 阅读(125) 评论(0) 推荐(0)
上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 22 下一页