2014年6月12日

sqlserver 带返回值的存储过程

摘要: 1 create proc test 2 @result nvarchar(25) output 3 as 4 begin 5 select @result = 'haha' 6 return 1; 7 end 8 go 9 10 declare @result varc... 阅读全文

posted @ 2014-06-12 21:48 Stomach_ache 阅读(588) 评论(0) 推荐(0)

LeetCode --- Valid Parentheses

摘要: 题目链接Problem discriptionGiven a string containing just the characters'(',')','{','}','['and']', determine if the input string is valid.The brackets mus... 阅读全文

posted @ 2014-06-12 11:35 Stomach_ache 阅读(91) 评论(0) 推荐(0)

LeetCode ---- Merge Sorted Array

摘要: 题目链接Problem discriptionGiven two sorted integer arrays A and B, merge B into A as one sorted array.Note:You may assume that A has enough space (size t... 阅读全文

posted @ 2014-06-12 10:31 Stomach_ache 阅读(144) 评论(0) 推荐(0)

导航