摘要:
提升 学习和使用的新软件 mockplus:一款简洁快速的原型图设计工具。适合软件团队、个人在软件开发的设计阶段使用。快速上手、功能够用。并能够很好地表达自己的设计。我们使用软件在最初原型设计中发挥了很大的作用。 学习和使用的新工具 git:主要用于源代码管理软件的开发 coding:是一个面向开发 阅读全文
摘要:
符帅 1500802061 "http://www.cnblogs.com/fu520631/" 陈义生 1500802059 "http://www.cnblogs.com/cys123/" "coding.net" 功能截图 加减乘除 真分数 退格和清屏 正确与错误 倒计时 结对编程的感受 结对 阅读全文
摘要:
一、四则运算代码 "coding.net" 二、《构建之法》 P146 用户调研:怎样分辨用户反馈的需求是大部分人真正需求的? P183 PM的能力要求和任务:PM如此重要,新人怎样才能逐渐成长为PM呢? P190 典型用户:当多个典型用户需求冲突时,如何平衡需求开发呢? P241 不让用户犯简单的 阅读全文
摘要:
class Solution {public: /** * @param n: An integer * @return: An integer */ int climbStairs(int n) { // write your code here int dp1 = 1, dp2 = 2, dpW 阅读全文
摘要:
class Solution {public: /** * @param prices: Given an integer array * @return: Maximum profit */ int maxProfit(vector<int> &prices) { // write your co 阅读全文
摘要:
class Solution {public: /** * @param A: a list of integers * @return : return an integer */ int removeDuplicates(vector<int> &nums) { // write your co 阅读全文