
算法
qrzeng
初出茅庐的Java后台工程师
展开
-
【leetCode】13. Roman to Integer 罗马文字转数字
描述: Roman numerals are represented by seven different symbols:I,V,X,L,C,DandM. Symbol Value I 1 V 5 X 10 L 50 C 100 D ...原创 2019-03-08 23:54:05 · 146 阅读 · 0 评论 -
【leetCode】20. Valid Parentheses 有效括号序列
描述: Given a string containing just the characters'(',')','{','}','['and']', determine if the input string is valid. An input string is valid if: Open brackets must be closed by the same typ...原创 2019-03-09 23:00:35 · 118 阅读 · 0 评论 -
【leetCode】21. Merge Two Sorted Lists合并两个有序数组
描述: Merge two sorted linked lists and return it as a new list. The new list should be made by splicing together the nodes of the first two lists. Example: Input: 1->2->4, 1->3->4 Outp...原创 2019-03-10 22:23:51 · 207 阅读 · 0 评论