程序媛詹妮弗
终身学习
摘要: Given an input string, reverse the string word by word. Example: Input: "the sky is blue",Output: "blue is sky the".Note: A word is defined as a seque 阅读全文
posted @ 2018-11-03 16:44 程序媛詹妮弗 阅读(137) 评论(0) 推荐(0) 编辑
摘要: Evaluate the value of an arithmetic expression in Reverse Polish Notation. Valid operators are +, -, *, /. Each operand may be an integer or another e 阅读全文
posted @ 2018-11-03 16:11 程序媛詹妮弗 阅读(176) 评论(0) 推荐(0) 编辑
摘要: 跟面试官确认是arrayList还是singly-linked list /* Union 并集:两个升序的list a, b, 返回其并集(升序排序)*/ /* Intersection 交集:两个升序的list a, b, 返回其交集(升序排序) */ followup1: 上述问题是2个lis 阅读全文
posted @ 2018-11-03 08:32 程序媛詹妮弗 阅读(319) 评论(0) 推荐(0) 编辑
摘要: Given two strings s and t, determine if they are isomorphic. Two strings are isomorphic if the characters in s can be replaced to get t. All occurrenc 阅读全文
posted @ 2018-11-03 04:58 程序媛詹妮弗 阅读(135) 评论(0) 推荐(0) 编辑