From 9c587c8248d9bf3e43152e2b7d39a2be198bc596 Mon Sep 17 00:00:00 2001 From: Alice Yang Date: Thu, 10 Sep 2015 16:19:08 -0400 Subject: [PATCH 01/32] Create merge.java --- Java/merge.java | 58 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 Java/merge.java diff --git a/Java/merge.java b/Java/merge.java new file mode 100644 index 00000000..f1ca62f3 --- /dev/null +++ b/Java/merge.java @@ -0,0 +1,58 @@ +package com.test; + +import java.util.ArrayList; +import java.util.List; + + +public class Merge { + + public static void main(String[] args) { + List arrays = new ArrayList(); + arrays.add(new Integer[]{10, 15, 17, 2000}); + arrays.add(new Integer[]{-5, 7, 11, 19, 22}); + arrays.add(new Integer[]{1, 8, 10, 12, 120}); + + Integer[] p = mergeArrays(arrays); + for (int i = 0; i < p.length; i++) { + System.out.print(p[i] + ", "); + } + } + + + public static Integer[] mergeArrays(List arrays){ + if(arrays == null || arrays.size() == 0) + return null; + Integer[] p, q; + if(arrays.size() >= 2){ + p = arrays.get(0); + for (int i = 1; i < arrays.size(); i++) { + p = merge(p, arrays.get(i)); + } + } else { + return arrays.get(0); + } + return p; + } + + public static Integer[] merge(Integer[] a, Integer[] b){ + Integer[] c = new Integer[a.length+b.length]; + int i=0, j=0, k=0; + + while(i < a.length && j < b.length){ + if(a[i] <= b[j]) + c[k++] = a[i++]; + else + c[k++] = b[j++]; + } + + while(i < a.length) + c[k++] = a[i++]; + + while(j < b.length) + c[k++] = b[j++]; + + + return c; + } + +} From f634afa1e0240e8047e8f4e74f925e87351d56db Mon Sep 17 00:00:00 2001 From: Alice Yang Date: Thu, 10 Sep 2015 16:59:30 -0400 Subject: [PATCH 02/32] Create TreeNode.java --- Java/TreeNode.java | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 Java/TreeNode.java diff --git a/Java/TreeNode.java b/Java/TreeNode.java new file mode 100644 index 00000000..0f78232e --- /dev/null +++ b/Java/TreeNode.java @@ -0,0 +1,21 @@ +package com.test; + +public class TreeNode { + int val; + TreeNode left; + TreeNode right; + TreeNode(int x) { val = x; } + public TreeNode getLeft() { + return left; + } + public void setLeft(TreeNode left) { + this.left = left; + } + public TreeNode getRight() { + return right; + } + public void setRight(TreeNode right) { + this.right = right; + } + +} From ca78a69815b871caeaf74f137c96b8f82eeab574 Mon Sep 17 00:00:00 2001 From: Alice Yang Date: Thu, 10 Sep 2015 17:00:07 -0400 Subject: [PATCH 03/32] Create solution.java --- Java/solution.java | 114 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 114 insertions(+) create mode 100644 Java/solution.java diff --git a/Java/solution.java b/Java/solution.java new file mode 100644 index 00000000..e56aaf69 --- /dev/null +++ b/Java/solution.java @@ -0,0 +1,114 @@ +public class Solution { + public static ArrayList inorderTraversal(TreeNode root) { + // IMPORTANT: Please reset any member data you declared, as + // the same Solution instance will be reused for each test case. + ArrayList lst = new ArrayList(); + + if(root == null) + return lst; + + Stack stack = new Stack(); + //define a pointer to track nodes + TreeNode p = root; + + while(!stack.empty() || p != null){ + + // if it is not null, push to stack + //and go down the tree to left + if(p != null){ + stack.push(p); + p = p.left; + + // if no left child + // pop stack, process the node + // then let p point to the right + }else{ + TreeNode t = stack.pop(); + lst.add(t.val); + p = t.right; + } + } + + return lst; + } + + public static ArrayList postorderTraversal(TreeNode root) { + + ArrayList lst = new ArrayList(); + + if(root == null) + return lst; + + Stack stack = new Stack(); + stack.push(root); + + TreeNode prev = null; + while(!stack.empty()){ + TreeNode curr = stack.peek(); + + // go down the tree. + //check if current node is leaf, if so, process it and pop stack, + //otherwise, keep going down + if(prev == null || prev.left == curr || prev.right == curr){ + //prev == null is the situation for the root node + if(curr.left != null){ + stack.push(curr.left); + }else if(curr.right != null){ + stack.push(curr.right); + }else{ + stack.pop(); + lst.add(curr.val); + } + + //go up the tree from left node + //need to check if there is a right child + //if yes, push it to stack + //otherwise, process parent and pop stack + }else if(curr.left == prev){ + if(curr.right != null){ + stack.push(curr.right); + }else{ + stack.pop(); + lst.add(curr.val); + } + + //go up the tree from right node + //after coming back from right node, process parent node and pop stack. + }else if(curr.right == prev){ + stack.pop(); + lst.add(curr.val); + } + + prev = curr; + } + + return lst; + } + + + public static void main(String[] args){ + TreeNode node1 = new TreeNode(1); + TreeNode node2 = new TreeNode(2); + TreeNode node3 = new TreeNode(3); + TreeNode node4 = new TreeNode(4); + TreeNode node5 = new TreeNode(5); + + node2.setLeft(node4); + node2.setRight(node5); + + node1.setLeft(node2); + node1.setRight(node3); + + List result = Solution.inorderTraversal(node1); + + System.out.println(result); + + result = Solution.postorderTraversal(node1); + + System.out.println(result); + + + + + } +} From bf668bbc43eff25659ffb5d00329b3177bc04dc0 Mon Sep 17 00:00:00 2001 From: Alice Yang Date: Thu, 10 Sep 2015 17:08:02 -0400 Subject: [PATCH 04/32] Update README.md --- Java/README.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Java/README.md b/Java/README.md index 8886a0b4..9784effb 100644 --- a/Java/README.md +++ b/Java/README.md @@ -1,3 +1 @@ -#Java版 ------------------ -书的内容与C++版一摸一样,不过代码是用Java写的。本书的代码要求 Java 6 以上。 +http://www.nakov.com/tag/microsoft-interview-questions/ From 7fd3fb8254b7cb768500093075e945f860f44409 Mon Sep 17 00:00:00 2001 From: Alice Yang Date: Mon, 21 Sep 2015 15:43:43 -0400 Subject: [PATCH 05/32] Create code.txt --- Java/code.txt | 1 + 1 file changed, 1 insertion(+) create mode 100644 Java/code.txt diff --git a/Java/code.txt b/Java/code.txt new file mode 100644 index 00000000..c9dddedf --- /dev/null +++ b/Java/code.txt @@ -0,0 +1 @@ +http://www.packtpub.com/code_download/20600 From 3d570267c05a4f01a40f0e2675c23034a6546ba2 Mon Sep 17 00:00:00 2001 From: Alice Yang Date: Thu, 5 May 2016 14:24:46 -0400 Subject: [PATCH 06/32] Create stock.html --- Java/stock.html | 190 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 190 insertions(+) create mode 100644 Java/stock.html diff --git a/Java/stock.html b/Java/stock.html new file mode 100644 index 00000000..0edff0e6 --- /dev/null +++ b/Java/stock.html @@ -0,0 +1,190 @@ +Best Time to Buy and Sell Stock I II III IV +2015年4月4日 12,972 次 +Best Time to Buy and Sell Stock I + +Description: Say you have an array for which the ith element is the price of a given stock on day i. If you were only permitted to complete at most one transaction (ie, buy one and sell one share of the stock), design an algorithm to find +the maximum profit. + +题意:用一个数组表示股票每天的价格,数组的第i个数表示股票在第i天的价格。 如果只允许进行一次交易,也就是说只允许买一支股票并卖掉,求最大的收益。 + +分析:动态规划法。从前向后遍历数组,记录当前出现过的最低价格,作为买入价格,并计算以当天价格出售的收益,作为可能的最大收益,整个遍历过程中,出现过的最大收益就是所求。 + +代码:O(n)时间,O(1)空间。 + + +public class Solution { + public int maxProfit(int[] prices) { + if (prices.length < 2) return 0; + + int maxProfit = 0; + int curMin = prices[0]; + + for (int i = 1; i < prices.length; i++) { + curMin = Math.min(curMin, prices[i]); + maxProfit = Math.max(maxProfit, prices[i] - curMin); + } + + return maxProfit; + } +} +Best Time to Buy and Sell Stock II + +Description: Say you have an array for which the ith element is the price of a given stock on day i. Design an algorithm to find the maximum profit. You may complete as many transactions as you like (ie, buy one and sell one share of the stock multiple times). However, you may not engage in multiple transactions at the same time (ie, you must sell the stock before you buy again). + +题目:用一个数组表示股票每天的价格,数组的第i个数表示股票在第i天的价格。交易次数不限,但一次只能交易一支股票,也就是说手上最多只能持有一支股票,求最大收益。 + +分析:贪心法。从前向后遍历数组,只要当天的价格高于前一天的价格,就算入收益。 + +代码:时间O(n),空间O(1)。 + + +public class Solution { + public int maxProfit(int[] prices) { + if (prices.length < 2) return 0; + + int maxProfit = 0; + for (int i = 1; i < prices.length; i++) { + int diff = prices[i] - prices[i - 1]; + if (diff > 0) { + maxProfit += diff; + } + } + + return maxProfit; + } +} +Best Time to Buy and Sell Stock III + +Description: Say you have an array for which the ith element is the price of a given stock on day i. Design an algorithm to find the maximum profit. You may complete at most two transactions. Note: You may not engage in multiple transactions at the same time (ie, you must sell the stock before you buy again). + +题意:用一个数组表示股票每天的价格,数组的第i个数表示股票在第i天的价格。最多交易两次,手上最多只能持有一支股票,求最大收益。 + +分析:动态规划法。以第i天为分界线,计算第i天之前进行一次交易的最大收益preProfit[i],和第i天之后进行一次交易的最大收益postProfit[i],最后遍历一遍,max{preProfit[i] + postProfit[i]} (0≤i≤n-1)就是最大收益。第i天之前和第i天之后进行一次的最大收益求法同Best Time to Buy and Sell Stock I。 + +代码:时间O(n),空间O(n)。 + +public class Solution { + public int maxProfit(int[] prices) { + if (prices.length < 2) return 0; + + int n = prices.length; + int[] preProfit = new int[n]; + int[] postProfit = new int[n]; + + int curMin = prices[0]; + for (int i = 1; i < n; i++) { + curMin = Math.min(curMin, prices[i]); + preProfit[i] = Math.max(preProfit[i - 1], prices[i] - curMin); + } + + int curMax = prices[n - 1]; + for (int i = n - 2; i >= 0; i--) { + curMax = Math.max(curMax, prices[i]); + postProfit[i] = Math.max(postProfit[i + 1], curMax - prices[i]); + } + + int maxProfit = 0; + for (int i = 0; i < n; i++) { + maxProfit = Math.max(maxProfit, preProfit[i] + postProfit[i]); + } + + return maxProfit; + } +} +Best Time to Buy and Sell Stock IV + +Description: Say you have an array for which the ith element is the price of a given stock on day i. Design an algorithm to find the maximum profit. You may complete at most k transactions. Note: You may not engage in multiple transactions at the same time (ie, you must sell the stock before you buy again). + +题意:用一个数组表示股票每天的价格,数组的第i个数表示股票在第i天的价格。最多交易k次,手上最多只能持有一支股票,求最大收益。 + +分析:特殊动态规划法。传统的动态规划我们会这样想,到第i天时进行j次交易的最大收益,要么等于到第i-1天时进行j次交易的最大收益(第i天价格低于第i-1天的价格),要么等于到第i-1天时进行j-1次交易,然后第i天进行一次交易(第i天价格高于第i-1天价格时)。于是得到动规方程如下(其中diff = prices[i] – prices[i – 1]): + +profit[i][j] = max(profit[i – 1][j], profit[i – 1][j – 1] + diff) +看起来很有道理,但其实不对,为什么不对呢?因为diff是第i天和第i-1天的差额收益,如果第i-1天当天本身也有交易呢(也就是说第i-1天刚卖出了股票,然后又买入等到第i天再卖出),那么这两次交易就可以合为一次交易,这样profit[i – 1][j – 1] + diff实际上只进行了j-1次交易,而不是最多可以的j次,这样得到的最大收益就小了。 + +那么怎样计算第i天进行交易的情况的最大收益,才会避免少计算一次交易呢?我们用一个局部最优解和全局最有解表示到第i天进行j次的收益,这就是该动态规划的特殊之处。 + +用local[i][j]表示到达第i天时,最多进行j次交易的局部最优解;用global[i][j]表示到达第i天时,最多进行j次的全局最优解。它们二者的关系如下(其中diff = prices[i] – prices[i – 1]): + +local[i][j] = max(global[i – 1][j – 1] , local[i – 1][j] + diff) +global[i][j] = max(global[i – 1][j], local[i][j]) +local[i][j]和global[i][j]的区别是:local[i][j]意味着在第i天一定有交易(卖出)发生,当第i天的价格高于第i-1天(即diff > 0)时,那么可以把这次交易(第i-1天买入第i天卖出)跟第i-1天的交易(卖出)合并为一次交易,即local[i][j]=local[i-1][j]+diff;当第i天的价格不高于第i-1天(即diff<=0)时,那么local[i][j]=global[i-1][j-1]+diff,而由于diff<=0,所以可写成local[i][j]=global[i-1][j-1]。global[i][j]就是我们所求的前i天最多进行k次交易的最大收益,可分为两种情况:如果第i天没有交易(卖出),那么global[i][j]=global[i-1][j];如果第i天有交易(卖出),那么global[i][j]=local[i][j]。 + +参考:http://www.cnblogs.com/grandyang/p/4295761.html + +代码:时间O(nk),空间O(nk)。 + +public class Solution { + public int maxProfit(int k, int[] prices) { + if (prices.length < 2) return 0; + + int days = prices.length; + if (k >= days) return maxProfit2(prices); + + int[][] local = new int[days][k + 1]; + int[][] global = new int[days][k + 1]; + + for (int i = 1; i < days ; i++) { + int diff = prices[i] - prices[i - 1]; + + for (int j = 1; j <= k; j++) { + local[i][j] = Math.max(global[i - 1][j - 1], local[i - 1][j] + diff); + global[i][j] = Math.max(global[i - 1][j], local[i][j]); + } + } + + return global[days - 1][k]; + } + + + public int maxProfit2(int[] prices) { + int maxProfit = 0; + + for (int i = 1; i < prices.length; i++) { + if (prices[i] > prices[i - 1]) { + maxProfit += prices[i] - prices[i - 1]; + } + } + + return maxProfit; + } +} +我们知道,动规所用的二维辅助数组可以降为一维的,即只用大小为k的一维数组记录到达第i天时的局部最优解和全局最优解。需要注意的是,由于第i天时交易k次的最优解依赖于第i-1天时交易k-1次的最优解,所以数组更新应当从后往前(即从k到1)更新。 + +代码:时间O(nk),空间O(k)。 + + +public class Solution { + public int maxProfit(int k, int[] prices) { + if (prices.length < 2) return 0; + if (k >= prices.length) return maxProfit2(prices); + + int[] local = new int[k + 1]; + int[] global = new int[k + 1]; + + for (int i = 1; i < prices.length ; i++) { + int diff = prices[i] - prices[i - 1]; + + for (int j = k; j > 0; j--) { + local[j] = Math.max(global[j - 1], local[j] + diff); + global[j] = Math.max(global[j], local[j]); + } + } + + return global[k]; + } + + + public int maxProfit2(int[] prices) { + int maxProfit = 0; + + for (int i = 1; i < prices.length; i++) { + if (prices[i] > prices[i - 1]) { + maxProfit += prices[i] - prices[i - 1]; + } + } + + return maxProfit; + } +} +补充:这道题还有一个陷阱,就是当k大于天数时,其实就退化成 Best Time to Buy and Sell Stock II 了。就不能用动规来做了,为什么?(请思考) 另外,Best Time to Buy and Sell Stock III 就是本题k=2的情况,所以说IV是II和III的综合。 From 4763e94ccafd0a4103be13d859d3c5eb935e3c19 Mon Sep 17 00:00:00 2001 From: Alice Yang Date: Thu, 6 Oct 2016 13:48:06 -0400 Subject: [PATCH 07/32] Create book.txt --- "\345\217\202\350\200\203\350\265\204\346\226\231/book.txt" | 1 + 1 file changed, 1 insertion(+) create mode 100644 "\345\217\202\350\200\203\350\265\204\346\226\231/book.txt" diff --git "a/\345\217\202\350\200\203\350\265\204\346\226\231/book.txt" "b/\345\217\202\350\200\203\350\265\204\346\226\231/book.txt" new file mode 100644 index 00000000..40ad821a --- /dev/null +++ "b/\345\217\202\350\200\203\350\265\204\346\226\231/book.txt" @@ -0,0 +1 @@ +http://gardenahs-lausd-ca.schoolloop.com/file/1373090994251/1356609260754/3715985799558570622.pdf From d63698b290033926d5112c9fb7d104312603f03c Mon Sep 17 00:00:00 2001 From: Alice Yang Date: Thu, 6 Oct 2016 13:52:01 -0400 Subject: [PATCH 08/32] Update book.txt --- .../book.txt" | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git "a/\345\217\202\350\200\203\350\265\204\346\226\231/book.txt" "b/\345\217\202\350\200\203\350\265\204\346\226\231/book.txt" index 40ad821a..cf1584da 100644 --- "a/\345\217\202\350\200\203\350\265\204\346\226\231/book.txt" +++ "b/\345\217\202\350\200\203\350\265\204\346\226\231/book.txt" @@ -1 +1,9 @@ http://gardenahs-lausd-ca.schoolloop.com/file/1373090994251/1356609260754/3715985799558570622.pdf + +http://gardenahs-lausd-ca.schoolloop.com/file/1373090994251/1356609260754/3728226293080045514.pdf + +http://gardenahs-lausd-ca.schoolloop.com/file/1373090994251/1356609260754/5390567260267048928.pdf + +http://glencoe.mheducation.com/sites/0078884802/student_view0/student_workbooks.html + +http://www.citrus.k12.fl.us/edserv/secondary/Timelines%202014_15/HMH%20Curriculum%20Planning/Holt%20Algebra%201%20Honors/LA1_CCCC_TE.pdf From cf9fc9450404fc439d0d37bb5db9d1d45e776b9b Mon Sep 17 00:00:00 2001 From: Alice Yang Date: Thu, 6 Oct 2016 14:02:49 -0400 Subject: [PATCH 09/32] Update book.txt --- .../book.txt" | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git "a/\345\217\202\350\200\203\350\265\204\346\226\231/book.txt" "b/\345\217\202\350\200\203\350\265\204\346\226\231/book.txt" index cf1584da..12edf718 100644 --- "a/\345\217\202\350\200\203\350\265\204\346\226\231/book.txt" +++ "b/\345\217\202\350\200\203\350\265\204\346\226\231/book.txt" @@ -7,3 +7,27 @@ http://gardenahs-lausd-ca.schoolloop.com/file/1373090994251/1356609260754/539056 http://glencoe.mheducation.com/sites/0078884802/student_view0/student_workbooks.html http://www.citrus.k12.fl.us/edserv/secondary/Timelines%202014_15/HMH%20Curriculum%20Planning/Holt%20Algebra%201%20Honors/LA1_CCCC_TE.pdf + +https://www.jmap.org/JMAPRegentsExamArchives/ALGEBRAIEXAMS/ExamAnswers/0116ExamAIans.pdf + +http://www.lmtsd.org/cms/lib/pa01000427/centricity/domain/264/algebra1-practiceworkbook-mcdougal.pdf + +http://www.nutleyschools.org/userfiles/94/Classes/9581/Algebra%201%20Book%20extra%20examples.pdf + +http://www.rjssolutions.com/echs/Algebra1Files/resource_index/practice_tg.pdf + +http://www.mathacademicexcellence.com/Material_Algebra1.pdf + +http://www.husd.org/cms/lib08/AZ01001450/Centricity/Domain/755/Algebra1_Student_Workbook.pdf + +http://www.wainsworld.org/Books/McDougal%20Algebra%202/Algebra%202%20Practice%20Workbook.pdf + +http://webzoom.freewebs.com/thmsadaqagroup/Algebra%20II%20workbook.pdf + +http://www.midwayisd.org/cms/lib/TX01000662/Centricity/Domain/959/Workbook.pdf + +http://hs-math-honors2.ism-online.org/files/2013/08/Student-Textbook-Holt.pdf + +https://www.muscogee.k12.ga.us/ForStudents/eBooks/Mathematics/ml_hs_ga_math_2/ml_hs_ga_math_2.pdf + +http://www.mcdougallittell.com/ml_data/pdf/states/GA/alg2_stpw.pdf From adb15706f1ce11a1acc7e61c625191620535f170 Mon Sep 17 00:00:00 2001 From: Alice Yang Date: Thu, 6 Oct 2016 14:06:58 -0400 Subject: [PATCH 10/32] Update book.txt --- "\345\217\202\350\200\203\350\265\204\346\226\231/book.txt" | 2 ++ 1 file changed, 2 insertions(+) diff --git "a/\345\217\202\350\200\203\350\265\204\346\226\231/book.txt" "b/\345\217\202\350\200\203\350\265\204\346\226\231/book.txt" index 12edf718..5d5c0503 100644 --- "a/\345\217\202\350\200\203\350\265\204\346\226\231/book.txt" +++ "b/\345\217\202\350\200\203\350\265\204\346\226\231/book.txt" @@ -31,3 +31,5 @@ http://hs-math-honors2.ism-online.org/files/2013/08/Student-Textbook-Holt.pdf https://www.muscogee.k12.ga.us/ForStudents/eBooks/Mathematics/ml_hs_ga_math_2/ml_hs_ga_math_2.pdf http://www.mcdougallittell.com/ml_data/pdf/states/GA/alg2_stpw.pdf + +http://sault.eup.k12.mi.us/cms/lib/MI17000143/Centricity/Domain/137/a2sm.pdf From 2738a52413c6512a7da4b848896c67724d7d135f Mon Sep 17 00:00:00 2001 From: Alice Yang Date: Thu, 6 Oct 2016 14:09:19 -0400 Subject: [PATCH 11/32] Update book.txt --- "\345\217\202\350\200\203\350\265\204\346\226\231/book.txt" | 2 ++ 1 file changed, 2 insertions(+) diff --git "a/\345\217\202\350\200\203\350\265\204\346\226\231/book.txt" "b/\345\217\202\350\200\203\350\265\204\346\226\231/book.txt" index 5d5c0503..14caccd6 100644 --- "a/\345\217\202\350\200\203\350\265\204\346\226\231/book.txt" +++ "b/\345\217\202\350\200\203\350\265\204\346\226\231/book.txt" @@ -26,6 +26,8 @@ http://webzoom.freewebs.com/thmsadaqagroup/Algebra%20II%20workbook.pdf http://www.midwayisd.org/cms/lib/TX01000662/Centricity/Domain/959/Workbook.pdf +http://sdshs.net/ourpages/auto/2010/10/6/47248761/AlgebraII%20TextBook.pdf + http://hs-math-honors2.ism-online.org/files/2013/08/Student-Textbook-Holt.pdf https://www.muscogee.k12.ga.us/ForStudents/eBooks/Mathematics/ml_hs_ga_math_2/ml_hs_ga_math_2.pdf From 7b48cf92b43f86f0777fa8cd82005bc40a2c4fd9 Mon Sep 17 00:00:00 2001 From: Alice Yang Date: Thu, 6 Oct 2016 14:10:49 -0400 Subject: [PATCH 12/32] Update book.txt --- "\345\217\202\350\200\203\350\265\204\346\226\231/book.txt" | 2 ++ 1 file changed, 2 insertions(+) diff --git "a/\345\217\202\350\200\203\350\265\204\346\226\231/book.txt" "b/\345\217\202\350\200\203\350\265\204\346\226\231/book.txt" index 14caccd6..2af77fa7 100644 --- "a/\345\217\202\350\200\203\350\265\204\346\226\231/book.txt" +++ "b/\345\217\202\350\200\203\350\265\204\346\226\231/book.txt" @@ -35,3 +35,5 @@ https://www.muscogee.k12.ga.us/ForStudents/eBooks/Mathematics/ml_hs_ga_math_2/ml http://www.mcdougallittell.com/ml_data/pdf/states/GA/alg2_stpw.pdf http://sault.eup.k12.mi.us/cms/lib/MI17000143/Centricity/Domain/137/a2sm.pdf + +http://www.motherseton.org/mshs/Faculty/Mrs%20Maria%20Elena%20Juatco/Algebra%20II/Practice%20Worksheets/algebra%202%20practice%20worksheets.pdf From c5a07850431c5dcbaa3f4e8e4d4074e820650c3e Mon Sep 17 00:00:00 2001 From: Alice Yang Date: Thu, 6 Oct 2016 14:12:05 -0400 Subject: [PATCH 13/32] Update book.txt --- "\345\217\202\350\200\203\350\265\204\346\226\231/book.txt" | 4 ++++ 1 file changed, 4 insertions(+) diff --git "a/\345\217\202\350\200\203\350\265\204\346\226\231/book.txt" "b/\345\217\202\350\200\203\350\265\204\346\226\231/book.txt" index 2af77fa7..ae749634 100644 --- "a/\345\217\202\350\200\203\350\265\204\346\226\231/book.txt" +++ "b/\345\217\202\350\200\203\350\265\204\346\226\231/book.txt" @@ -37,3 +37,7 @@ http://www.mcdougallittell.com/ml_data/pdf/states/GA/alg2_stpw.pdf http://sault.eup.k12.mi.us/cms/lib/MI17000143/Centricity/Domain/137/a2sm.pdf http://www.motherseton.org/mshs/Faculty/Mrs%20Maria%20Elena%20Juatco/Algebra%20II/Practice%20Worksheets/algebra%202%20practice%20worksheets.pdf + +http://www.hcpss.org/f/parents/summer_enteringalgebra2_2010.pdf + +http://www.scasd.org/cms/lib5/PA01000006/Centricity/Domain/788/Summer%20Review%20before%20Advanced%20Algebra%202.pdf From d1ed2e3190cb0c19d4c4a3d3766a46d67207ab05 Mon Sep 17 00:00:00 2001 From: Alice Yang Date: Thu, 6 Oct 2016 14:15:00 -0400 Subject: [PATCH 14/32] Update book.txt --- "\345\217\202\350\200\203\350\265\204\346\226\231/book.txt" | 4 ++++ 1 file changed, 4 insertions(+) diff --git "a/\345\217\202\350\200\203\350\265\204\346\226\231/book.txt" "b/\345\217\202\350\200\203\350\265\204\346\226\231/book.txt" index ae749634..f0136ff5 100644 --- "a/\345\217\202\350\200\203\350\265\204\346\226\231/book.txt" +++ "b/\345\217\202\350\200\203\350\265\204\346\226\231/book.txt" @@ -41,3 +41,7 @@ http://www.motherseton.org/mshs/Faculty/Mrs%20Maria%20Elena%20Juatco/Algebra%20I http://www.hcpss.org/f/parents/summer_enteringalgebra2_2010.pdf http://www.scasd.org/cms/lib5/PA01000006/Centricity/Domain/788/Summer%20Review%20before%20Advanced%20Algebra%202.pdf + +http://cherrycreek.cherrycreekschools.org/Departments/Math/Documents/Algebra%202%20Trig%20Honors%20Summer%20Packet.pdf + +https://sites.google.com/a/teachers.wlcsd.org/jennifer-caverly/curriculum/pre-calc-worksheets From c2e97076be6b97c8a9012daf35801dda65df8052 Mon Sep 17 00:00:00 2001 From: Alice Yang Date: Thu, 6 Oct 2016 14:16:13 -0400 Subject: [PATCH 15/32] Update book.txt --- "\345\217\202\350\200\203\350\265\204\346\226\231/book.txt" | 2 ++ 1 file changed, 2 insertions(+) diff --git "a/\345\217\202\350\200\203\350\265\204\346\226\231/book.txt" "b/\345\217\202\350\200\203\350\265\204\346\226\231/book.txt" index f0136ff5..a53c9e62 100644 --- "a/\345\217\202\350\200\203\350\265\204\346\226\231/book.txt" +++ "b/\345\217\202\350\200\203\350\265\204\346\226\231/book.txt" @@ -45,3 +45,5 @@ http://www.scasd.org/cms/lib5/PA01000006/Centricity/Domain/788/Summer%20Review%2 http://cherrycreek.cherrycreekschools.org/Departments/Math/Documents/Algebra%202%20Trig%20Honors%20Summer%20Packet.pdf https://sites.google.com/a/teachers.wlcsd.org/jennifer-caverly/curriculum/pre-calc-worksheets + +http://school.fultonschools.org/hs/westlake/Summer%20Assignments/Algebra%202%20Honors%20Summer%20Assignment%202016.pdf From eeee5cc03f80ccb78af68b2135af537adf7902f2 Mon Sep 17 00:00:00 2001 From: Alice Yang Date: Thu, 6 Oct 2016 14:17:40 -0400 Subject: [PATCH 16/32] Update book.txt --- "\345\217\202\350\200\203\350\265\204\346\226\231/book.txt" | 2 ++ 1 file changed, 2 insertions(+) diff --git "a/\345\217\202\350\200\203\350\265\204\346\226\231/book.txt" "b/\345\217\202\350\200\203\350\265\204\346\226\231/book.txt" index a53c9e62..faca4f22 100644 --- "a/\345\217\202\350\200\203\350\265\204\346\226\231/book.txt" +++ "b/\345\217\202\350\200\203\350\265\204\346\226\231/book.txt" @@ -47,3 +47,5 @@ http://cherrycreek.cherrycreekschools.org/Departments/Math/Documents/Algebra%202 https://sites.google.com/a/teachers.wlcsd.org/jennifer-caverly/curriculum/pre-calc-worksheets http://school.fultonschools.org/hs/westlake/Summer%20Assignments/Algebra%202%20Honors%20Summer%20Assignment%202016.pdf + +http://mathrepublic.webs.com/honorsalgebraii.htm From 191f56e03f1971917740180c78f055b510ede607 Mon Sep 17 00:00:00 2001 From: Alice Yang Date: Thu, 6 Oct 2016 14:18:30 -0400 Subject: [PATCH 17/32] Update book.txt --- "\345\217\202\350\200\203\350\265\204\346\226\231/book.txt" | 2 ++ 1 file changed, 2 insertions(+) diff --git "a/\345\217\202\350\200\203\350\265\204\346\226\231/book.txt" "b/\345\217\202\350\200\203\350\265\204\346\226\231/book.txt" index faca4f22..5d0f9ea6 100644 --- "a/\345\217\202\350\200\203\350\265\204\346\226\231/book.txt" +++ "b/\345\217\202\350\200\203\350\265\204\346\226\231/book.txt" @@ -49,3 +49,5 @@ https://sites.google.com/a/teachers.wlcsd.org/jennifer-caverly/curriculum/pre-ca http://school.fultonschools.org/hs/westlake/Summer%20Assignments/Algebra%202%20Honors%20Summer%20Assignment%202016.pdf http://mathrepublic.webs.com/honorsalgebraii.htm + +http://foglemath.weebly.com/algebra-2.html From 7ddb744f69e31093a0a1566ac854563db3eefb0e Mon Sep 17 00:00:00 2001 From: Alice Yang Date: Thu, 6 Oct 2016 14:19:37 -0400 Subject: [PATCH 18/32] Update book.txt --- "\345\217\202\350\200\203\350\265\204\346\226\231/book.txt" | 2 ++ 1 file changed, 2 insertions(+) diff --git "a/\345\217\202\350\200\203\350\265\204\346\226\231/book.txt" "b/\345\217\202\350\200\203\350\265\204\346\226\231/book.txt" index 5d0f9ea6..0c65a7e7 100644 --- "a/\345\217\202\350\200\203\350\265\204\346\226\231/book.txt" +++ "b/\345\217\202\350\200\203\350\265\204\346\226\231/book.txt" @@ -51,3 +51,5 @@ http://school.fultonschools.org/hs/westlake/Summer%20Assignments/Algebra%202%20H http://mathrepublic.webs.com/honorsalgebraii.htm http://foglemath.weebly.com/algebra-2.html + +http://www.wsfcs.k12.nc.us/cms/lib/NC01001395/Centricity/Domain/7929/Word%20Problems%20Linear%20and%20Inequalities.pdf From c39688c811293cc23efb3c35381caed8672710fc Mon Sep 17 00:00:00 2001 From: Alice Yang Date: Thu, 6 Oct 2016 14:20:34 -0400 Subject: [PATCH 19/32] Update book.txt --- "\345\217\202\350\200\203\350\265\204\346\226\231/book.txt" | 2 ++ 1 file changed, 2 insertions(+) diff --git "a/\345\217\202\350\200\203\350\265\204\346\226\231/book.txt" "b/\345\217\202\350\200\203\350\265\204\346\226\231/book.txt" index 0c65a7e7..3cb16ba9 100644 --- "a/\345\217\202\350\200\203\350\265\204\346\226\231/book.txt" +++ "b/\345\217\202\350\200\203\350\265\204\346\226\231/book.txt" @@ -53,3 +53,5 @@ http://mathrepublic.webs.com/honorsalgebraii.htm http://foglemath.weebly.com/algebra-2.html http://www.wsfcs.k12.nc.us/cms/lib/NC01001395/Centricity/Domain/7929/Word%20Problems%20Linear%20and%20Inequalities.pdf + +http://www1.dcsdk12.org/secondary/dchs/docs/174295.pdf From 74aced488cca9d8a88aae07ad92ed067c2e449b9 Mon Sep 17 00:00:00 2001 From: Alice Yang Date: Thu, 6 Oct 2016 14:21:48 -0400 Subject: [PATCH 20/32] Update book.txt --- "\345\217\202\350\200\203\350\265\204\346\226\231/book.txt" | 2 ++ 1 file changed, 2 insertions(+) diff --git "a/\345\217\202\350\200\203\350\265\204\346\226\231/book.txt" "b/\345\217\202\350\200\203\350\265\204\346\226\231/book.txt" index 3cb16ba9..934d224d 100644 --- "a/\345\217\202\350\200\203\350\265\204\346\226\231/book.txt" +++ "b/\345\217\202\350\200\203\350\265\204\346\226\231/book.txt" @@ -55,3 +55,5 @@ http://foglemath.weebly.com/algebra-2.html http://www.wsfcs.k12.nc.us/cms/lib/NC01001395/Centricity/Domain/7929/Word%20Problems%20Linear%20and%20Inequalities.pdf http://www1.dcsdk12.org/secondary/dchs/docs/174295.pdf + +https://amhs.ccsdschools.com/UserFiles/Servers/Server_2856713/File/Renes/Prob%20&%20Stats/Ch.%2010%20regression/Regression%20Wkst%20-%20Notes.pdf From 1565bcbd6742257280943e007f1a5c787dab7ee4 Mon Sep 17 00:00:00 2001 From: Alice Yang Date: Thu, 6 Oct 2016 14:23:34 -0400 Subject: [PATCH 21/32] Update book.txt --- "\345\217\202\350\200\203\350\265\204\346\226\231/book.txt" | 2 ++ 1 file changed, 2 insertions(+) diff --git "a/\345\217\202\350\200\203\350\265\204\346\226\231/book.txt" "b/\345\217\202\350\200\203\350\265\204\346\226\231/book.txt" index 934d224d..24626ade 100644 --- "a/\345\217\202\350\200\203\350\265\204\346\226\231/book.txt" +++ "b/\345\217\202\350\200\203\350\265\204\346\226\231/book.txt" @@ -57,3 +57,5 @@ http://www.wsfcs.k12.nc.us/cms/lib/NC01001395/Centricity/Domain/7929/Word%20Prob http://www1.dcsdk12.org/secondary/dchs/docs/174295.pdf https://amhs.ccsdschools.com/UserFiles/Servers/Server_2856713/File/Renes/Prob%20&%20Stats/Ch.%2010%20regression/Regression%20Wkst%20-%20Notes.pdf + +http://www.chino.k12.ca.us/Page/10842 From 2ef51d13443a0b89acccb0d320959e7e1dba76cf Mon Sep 17 00:00:00 2001 From: Alice Yang Date: Thu, 6 Oct 2016 14:40:05 -0400 Subject: [PATCH 22/32] Create eng.txt --- .../eng.txt" | 31 +++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 "\345\217\202\350\200\203\350\265\204\346\226\231/eng.txt" diff --git "a/\345\217\202\350\200\203\350\265\204\346\226\231/eng.txt" "b/\345\217\202\350\200\203\350\265\204\346\226\231/eng.txt" new file mode 100644 index 00000000..8572aaa8 --- /dev/null +++ "b/\345\217\202\350\200\203\350\265\204\346\226\231/eng.txt" @@ -0,0 +1,31 @@ +https://www.mhschool.com/reading/treasure_workbooks/national/g6/grammar_pb.pdf + +https://macmillanmh.com/languagearts/2001/teacher/teachres/pdf/Pract6.pdf + +http://www.berkeleycountyschools.org/cms/lib02/WV01000962/Centricity/Domain/37/6th%207th%208th%20Writing%20Folder.pdf + +http://www.createbetterwriters.com/uploads/ParagraphEbook2ndEd_copy.pdf + +http://www.misd.net/languageart/GrammarInAction/ProofreadingRevisingEditing.pdf + +http://my.hrw.com/support/hos/hostpdf/hostmsprompts.pdf + +https://www.bced.gov.bc.ca/perf_stands/w8atss.pdf + +http://www.westernreservepublicmedia.org/poetry/images/more-than-rhyme-poetry-fundamentals-teacher-guide.pdf + +http://www.collinsed.com/PDFs/225-B_TOC_preview.pdf + +http://www.glencoe.com/sites/common_assets/workbooks/language_arts/rprw/68rprw.pdf + +http://www.theeducatorsnetwork.com/webpages/thewriteresource/TeachingMemoirWriting.pdf + +http://www.ttms.org/PDFs/05%20Writers%20Workshop%20v001%20(Full).pdf + +http://www.vrml.k12.la.us/8th/08CC/08%20ELA%20Grade%208/02%20ELA_Grade_8_BLM.pdf + +http://www.beaconlearningcenter.com/documents/2338_01.pdf + +http://www.dentonisd.org/cms/lib/TX21000245/Centricity/Domain/4057/8th%20Grade%20Research%20Packet%202013.pdf + +http://www.loudoun.k12.va.us/cms/lib4/VA01000195/Centricity/Domain/13767/SWAP%20FINAL.pdf From a318b5a72c9edb735b8131e226c4bfa0c743034e Mon Sep 17 00:00:00 2001 From: Alice Yang Date: Thu, 6 Oct 2016 14:44:30 -0400 Subject: [PATCH 23/32] Update eng.txt --- .../eng.txt" | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git "a/\345\217\202\350\200\203\350\265\204\346\226\231/eng.txt" "b/\345\217\202\350\200\203\350\265\204\346\226\231/eng.txt" index 8572aaa8..1ec0c081 100644 --- "a/\345\217\202\350\200\203\350\265\204\346\226\231/eng.txt" +++ "b/\345\217\202\350\200\203\350\265\204\346\226\231/eng.txt" @@ -29,3 +29,19 @@ http://www.beaconlearningcenter.com/documents/2338_01.pdf http://www.dentonisd.org/cms/lib/TX21000245/Centricity/Domain/4057/8th%20Grade%20Research%20Packet%202013.pdf http://www.loudoun.k12.va.us/cms/lib4/VA01000195/Centricity/Domain/13767/SWAP%20FINAL.pdf + +http://www.abcteach.com/free/w/writing_newsarticle_middle.pdf + +http://www.learningforlife.org/wp-content/documents/Career-Exploration-Lessons-for-8th-grade.pdf + +https://d2ct263enury6r.cloudfront.net/ZKS5KtUdyA2oJkvi4p8Vmzf2g3tJizP2MA2yUlo5hiG2ODtI.pdf + +http://www.doe.virginia.gov/testing/sol/standards_docs/english/2010/lesson_plans/writing/6-8/57_6-8_writing_writing_effective_dialog.pdf + +http://www.pcc.edu/staff/pdf/645/SubjectVerbAgreement.pdf + +http://wps.pearsoned.com/wps/media/objects/6524/6681325/Message%20writing.pdf + +http://eps.schoolspecialty.com/EPS/media/Site-Resources/downloads/external/read_write_think/Practicing_Homophones.pdf + +https://www.cccoe.k12.ca.us/stsvcs/newteacher/middle/Multisensory%20Writing.pdf From 3a0c9406c34441cc48eb1f16678c5a263d4afe4f Mon Sep 17 00:00:00 2001 From: Alice Yang Date: Thu, 6 Oct 2016 14:45:31 -0400 Subject: [PATCH 24/32] Update eng.txt --- "\345\217\202\350\200\203\350\265\204\346\226\231/eng.txt" | 2 ++ 1 file changed, 2 insertions(+) diff --git "a/\345\217\202\350\200\203\350\265\204\346\226\231/eng.txt" "b/\345\217\202\350\200\203\350\265\204\346\226\231/eng.txt" index 1ec0c081..32799347 100644 --- "a/\345\217\202\350\200\203\350\265\204\346\226\231/eng.txt" +++ "b/\345\217\202\350\200\203\350\265\204\346\226\231/eng.txt" @@ -45,3 +45,5 @@ http://wps.pearsoned.com/wps/media/objects/6524/6681325/Message%20writing.pdf http://eps.schoolspecialty.com/EPS/media/Site-Resources/downloads/external/read_write_think/Practicing_Homophones.pdf https://www.cccoe.k12.ca.us/stsvcs/newteacher/middle/Multisensory%20Writing.pdf + +http://www.gwinnett.k12.ga.us/ShilohMS/Gateway%20Writing%20PowerPoint%20for%20Parents.pdf From 3380e30f64babf3f8a5b81acc3d1f42eb8bc67e7 Mon Sep 17 00:00:00 2001 From: Alice Yang Date: Thu, 6 Oct 2016 14:46:00 -0400 Subject: [PATCH 25/32] Update eng.txt --- "\345\217\202\350\200\203\350\265\204\346\226\231/eng.txt" | 2 ++ 1 file changed, 2 insertions(+) diff --git "a/\345\217\202\350\200\203\350\265\204\346\226\231/eng.txt" "b/\345\217\202\350\200\203\350\265\204\346\226\231/eng.txt" index 32799347..e3fc728f 100644 --- "a/\345\217\202\350\200\203\350\265\204\346\226\231/eng.txt" +++ "b/\345\217\202\350\200\203\350\265\204\346\226\231/eng.txt" @@ -47,3 +47,5 @@ http://eps.schoolspecialty.com/EPS/media/Site-Resources/downloads/external/read_ https://www.cccoe.k12.ca.us/stsvcs/newteacher/middle/Multisensory%20Writing.pdf http://www.gwinnett.k12.ga.us/ShilohMS/Gateway%20Writing%20PowerPoint%20for%20Parents.pdf + +https://ed.psu.edu/englishpds/11-12/thomas/Domain_C_files/Grammar_packet.pdf From 73b353fd93eaa894d3825166b86536510c6ed697 Mon Sep 17 00:00:00 2001 From: Alice Yang Date: Fri, 21 Oct 2016 10:35:45 -0400 Subject: [PATCH 26/32] Update eng.txt --- "\345\217\202\350\200\203\350\265\204\346\226\231/eng.txt" | 2 ++ 1 file changed, 2 insertions(+) diff --git "a/\345\217\202\350\200\203\350\265\204\346\226\231/eng.txt" "b/\345\217\202\350\200\203\350\265\204\346\226\231/eng.txt" index e3fc728f..c2755456 100644 --- "a/\345\217\202\350\200\203\350\265\204\346\226\231/eng.txt" +++ "b/\345\217\202\350\200\203\350\265\204\346\226\231/eng.txt" @@ -49,3 +49,5 @@ https://www.cccoe.k12.ca.us/stsvcs/newteacher/middle/Multisensory%20Writing.pdf http://www.gwinnett.k12.ga.us/ShilohMS/Gateway%20Writing%20PowerPoint%20for%20Parents.pdf https://ed.psu.edu/englishpds/11-12/thomas/Domain_C_files/Grammar_packet.pdf + +http://keenanmadderra-4thgradeclassroom.weebly.com/wa-state-facts.html From 28b6e4c64d15210596f2e4df962830d2a9627667 Mon Sep 17 00:00:00 2001 From: Alice Yang Date: Fri, 21 Oct 2016 10:45:22 -0400 Subject: [PATCH 27/32] Update eng.txt --- "\345\217\202\350\200\203\350\265\204\346\226\231/eng.txt" | 2 ++ 1 file changed, 2 insertions(+) diff --git "a/\345\217\202\350\200\203\350\265\204\346\226\231/eng.txt" "b/\345\217\202\350\200\203\350\265\204\346\226\231/eng.txt" index c2755456..bec69693 100644 --- "a/\345\217\202\350\200\203\350\265\204\346\226\231/eng.txt" +++ "b/\345\217\202\350\200\203\350\265\204\346\226\231/eng.txt" @@ -51,3 +51,5 @@ http://www.gwinnett.k12.ga.us/ShilohMS/Gateway%20Writing%20PowerPoint%20for%20Pa https://ed.psu.edu/englishpds/11-12/thomas/Domain_C_files/Grammar_packet.pdf http://keenanmadderra-4thgradeclassroom.weebly.com/wa-state-facts.html + +https://www.libraries.uc.edu/content/dam/libraries/cech/docs/Bibliographies/english_language_artssecondary.pdf From 892c49373eb5b7688a77b0c8d8031094774a09a7 Mon Sep 17 00:00:00 2001 From: Alice Yang Date: Fri, 21 Oct 2016 10:46:47 -0400 Subject: [PATCH 28/32] Update eng.txt --- "\345\217\202\350\200\203\350\265\204\346\226\231/eng.txt" | 2 ++ 1 file changed, 2 insertions(+) diff --git "a/\345\217\202\350\200\203\350\265\204\346\226\231/eng.txt" "b/\345\217\202\350\200\203\350\265\204\346\226\231/eng.txt" index bec69693..8dbff71a 100644 --- "a/\345\217\202\350\200\203\350\265\204\346\226\231/eng.txt" +++ "b/\345\217\202\350\200\203\350\265\204\346\226\231/eng.txt" @@ -53,3 +53,5 @@ https://ed.psu.edu/englishpds/11-12/thomas/Domain_C_files/Grammar_packet.pdf http://keenanmadderra-4thgradeclassroom.weebly.com/wa-state-facts.html https://www.libraries.uc.edu/content/dam/libraries/cech/docs/Bibliographies/english_language_artssecondary.pdf + +http://www.bhamcityschools.org/cms/lib5/AL01001646/Centricity/Domain/131/Opinion-Argument%20Writing%20Resource.pdf From 0ef23363ce5bd404149c35490090f305afaaca85 Mon Sep 17 00:00:00 2001 From: Alice Yang Date: Fri, 21 Oct 2016 10:48:09 -0400 Subject: [PATCH 29/32] Update eng.txt --- "\345\217\202\350\200\203\350\265\204\346\226\231/eng.txt" | 4 ++++ 1 file changed, 4 insertions(+) diff --git "a/\345\217\202\350\200\203\350\265\204\346\226\231/eng.txt" "b/\345\217\202\350\200\203\350\265\204\346\226\231/eng.txt" index 8dbff71a..befc7242 100644 --- "a/\345\217\202\350\200\203\350\265\204\346\226\231/eng.txt" +++ "b/\345\217\202\350\200\203\350\265\204\346\226\231/eng.txt" @@ -55,3 +55,7 @@ http://keenanmadderra-4thgradeclassroom.weebly.com/wa-state-facts.html https://www.libraries.uc.edu/content/dam/libraries/cech/docs/Bibliographies/english_language_artssecondary.pdf http://www.bhamcityschools.org/cms/lib5/AL01001646/Centricity/Domain/131/Opinion-Argument%20Writing%20Resource.pdf + +https://dailypost.files.wordpress.com/2013/12/365-days-of-writing-prompts-1387477491.pdf + +https://education.depaul.edu/student-resources/academic-success-center/Documents/501writingprompts.pdf From f491ce6d2ed0f1078c4b0e4a6bb11e0545aca105 Mon Sep 17 00:00:00 2001 From: Alice Yang Date: Fri, 21 Oct 2016 10:48:47 -0400 Subject: [PATCH 30/32] Update eng.txt --- "\345\217\202\350\200\203\350\265\204\346\226\231/eng.txt" | 2 ++ 1 file changed, 2 insertions(+) diff --git "a/\345\217\202\350\200\203\350\265\204\346\226\231/eng.txt" "b/\345\217\202\350\200\203\350\265\204\346\226\231/eng.txt" index befc7242..e22ef832 100644 --- "a/\345\217\202\350\200\203\350\265\204\346\226\231/eng.txt" +++ "b/\345\217\202\350\200\203\350\265\204\346\226\231/eng.txt" @@ -59,3 +59,5 @@ http://www.bhamcityschools.org/cms/lib5/AL01001646/Centricity/Domain/131/Opinion https://dailypost.files.wordpress.com/2013/12/365-days-of-writing-prompts-1387477491.pdf https://education.depaul.edu/student-resources/academic-success-center/Documents/501writingprompts.pdf + +http://www.fulbright.cz/sites/default/files/soubory/resource_book_for_efl_teachers_in_central_asia.pdf From 17e34a7e53ca46c7d0dabc6ecabdedaa406243b2 Mon Sep 17 00:00:00 2001 From: Alice Yang Date: Fri, 21 Oct 2016 12:59:29 -0400 Subject: [PATCH 31/32] Update book.txt --- "\345\217\202\350\200\203\350\265\204\346\226\231/book.txt" | 2 ++ 1 file changed, 2 insertions(+) diff --git "a/\345\217\202\350\200\203\350\265\204\346\226\231/book.txt" "b/\345\217\202\350\200\203\350\265\204\346\226\231/book.txt" index 24626ade..15f22669 100644 --- "a/\345\217\202\350\200\203\350\265\204\346\226\231/book.txt" +++ "b/\345\217\202\350\200\203\350\265\204\346\226\231/book.txt" @@ -59,3 +59,5 @@ http://www1.dcsdk12.org/secondary/dchs/docs/174295.pdf https://amhs.ccsdschools.com/UserFiles/Servers/Server_2856713/File/Renes/Prob%20&%20Stats/Ch.%2010%20regression/Regression%20Wkst%20-%20Notes.pdf http://www.chino.k12.ca.us/Page/10842 + +http://www.dpi.state.nc.us/docs/curriculum/mathematics/scos/6.pdf From 4172c54e7dc1bbc6e9430a5a53cd4eb9f4bc914f Mon Sep 17 00:00:00 2001 From: Alice Yang Date: Fri, 21 Oct 2016 13:00:05 -0400 Subject: [PATCH 32/32] Update book.txt --- "\345\217\202\350\200\203\350\265\204\346\226\231/book.txt" | 2 ++ 1 file changed, 2 insertions(+) diff --git "a/\345\217\202\350\200\203\350\265\204\346\226\231/book.txt" "b/\345\217\202\350\200\203\350\265\204\346\226\231/book.txt" index 15f22669..e6e3dd9b 100644 --- "a/\345\217\202\350\200\203\350\265\204\346\226\231/book.txt" +++ "b/\345\217\202\350\200\203\350\265\204\346\226\231/book.txt" @@ -61,3 +61,5 @@ https://amhs.ccsdschools.com/UserFiles/Servers/Server_2856713/File/Renes/Prob%20 http://www.chino.k12.ca.us/Page/10842 http://www.dpi.state.nc.us/docs/curriculum/mathematics/scos/6.pdf + +http://www.dpi.state.nc.us/docs/curriculum/mathematics/scos/7.pdf