摘要:
Lambada [[http://www.yinyuetai.com/video/265213]]Trouble Is A Friend [[http://www.yinyuetai.com/video/524509]]Silver Lining [[http://www.yinyuetai.com/video/208871]]Good Is Good [[http://www.yinyuetai.com/video/118570]]Any Man Of Mine [[http://www.yinyuetai.com/video/5189]]Because You Loved Me [[htt 阅读全文
摘要:
【转】Top 5 Free Screen Recording Softwares For Windows该文章是转过来的,因为这里介绍了好几款免费的录制视频的软件。我自己需要使用,也许大家也有需求。1. EzvidEzvid is a screen recorder program that comes with an in-built video editor where you can split your recordings and add text in between two clips, creating a slideshow effect. There is no way t 阅读全文
摘要:
Q:Given life time of different animals. Find period when maximum number of animals lived. ex [5, 11], [6, 18], [2, 5],[3,12] etc. year in which max no animals exists.A:Input intervals (or lifetimes): [5, 11], [6, 18], [2, 5], [3,12]1. Put the end and start times of the intervals in one array. Sort i 阅读全文
摘要:
Q: function takes input x , y , A and Nreturns true ifthere are atleast N pairs of x and y satisfyingx^3 + y^3 = A;all inputs are postive integer valuesA: Taxicab numberhttp://en.wikipedia.org/wiki/Taxicab_number 阅读全文
摘要:
Q: Suppose we want to convert one string S1 to another string S2 using only 3 types of operations:-Insert(pos,char) (costs 8)-Delete(pos) (costs 6)-Replace(pos,char) (costs 8)Find the sequence of steps to convert S1 to S2 such that the cost to convert S1 to S2 is minimum.Eg. 'calculate' to & 阅读全文