2014年5月28日 星期三
leetcode 151 - Longest Substring Without Repeating Characters
標籤:
[程式]C++,
[網站]leetcode
2014年5月27日 星期二
leetcode 151 - Two Sum
就不發解答了,畢竟對岸一堆神人早就把答案全部解完了
這裡紀錄我自己的想法過程跟學習狀況
題目是:
Given an array of integers, find two numbers such that they add up to a specific target number.
The function twoSum should return indices of the two numbers such that they add up to the target, where index1 must be less than index2. Please note that your returned answers (both index1 and index2) are not zero-based.
You may assume that each input would have exactly one solution.
這裡紀錄我自己的想法過程跟學習狀況
題目是:
Given an array of integers, find two numbers such that they add up to a specific target number.
The function twoSum should return indices of the two numbers such that they add up to the target, where index1 must be less than index2. Please note that your returned answers (both index1 and index2) are not zero-based.
You may assume that each input would have exactly one solution.
Input: numbers={2, 7, 11, 15}, target=9
Output: index1=1, index2=2
Output: index1=1, index2=2
標籤:
[程式]C++,
[網站]leetcode
leetcode 151 - Reverse Words in a String
其實leetcode已經不止150題了,有151題
最後一題是在2014-03-05新增的
題目是
Given an input string, reverse the string word by word.
For example,
Given s = "the sky is blue",
return "blue is sky the".
第一次花了48ms
程式碼是用迴圈硬幹
第二次花了36ms
修正了回圈硬幹 改用C++的strtok(stringstream/getline)來分割字串
我提交的方式 C++,其餘可以選的語言還有Java跟python
真的有心用C++把151拼完後,再來考慮用python寫看看
最後一題是在2014-03-05新增的
題目是
Reverse Words in a String
For example,
Given s = "the sky is blue",
return "blue is sky the".
第一次花了48ms
程式碼是用迴圈硬幹
第二次花了36ms
修正了回圈硬幹 改用C++的strtok(stringstream/getline)來分割字串
我提交的方式 C++,其餘可以選的語言還有Java跟python
真的有心用C++把151拼完後,再來考慮用python寫看看
標籤:
[程式]C++,
[網站]leetcode
2014年5月9日 星期五
預防性羈押的辯論真是精彩
與其說精彩還不如說這不是辯論了,這是單方面的屠殺 ...
部長啊部長,回去多讀點書,不然多練習辯論的口才。
立法院 議事轉播
這裡有剪輯版
來看看國民黨的人抗議上街頭是怎麼做的
扁政府溫馴到了極點才會在下台被人清算 ...
部長啊部長,回去多讀點書,不然多練習辯論的口才。
立法院 議事轉播
這裡有剪輯版
來看看國民黨的人抗議上街頭是怎麼做的
扁政府溫馴到了極點才會在下台被人清算 ...
標籤:
[休閒]閒聊
2014年5月8日 星期四
訂閱:
文章 (Atom)