Skip to content

Commit

Permalink
🚚 Rename folder
Browse files Browse the repository at this point in the history
  • Loading branch information
tangweikun committed May 20, 2018
1 parent d7c9c25 commit 913ab5e
Show file tree
Hide file tree
Showing 18 changed files with 5 additions and 11 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ npm run test // also you can run `npm run watch`
| 107 | [ComplexNumberMultiplication](src/complexNumberMultiplication/index.ts) | [:green_book:](src/complexNumberMultiplication/README.md) | Medium | [LeetCode](https://leetcode.com/problems/maximum-product-of-three-numbers) | Math |
| 108 | [UglyNumber2](src/uglyNumber2/index.ts) | [:green_book:](src/uglyNumber2/README.md) | Medium | [LeetCode](https://leetcode.com/problems/maximum-product-of-three-numbers) | Math, DP |
| 109 | [ValidSquare](src/validSquare/index.ts) | [:green_book:](src/validSquare/README.md) | Medium | [LeetCode](https://leetcode.com/problems/valid-square) | Math |
| 110 | [1bitAnd2bitCharacters](src/1bitAnd2bitCharacters/index.ts) | [:green_book:](src/1bitAnd2bitCharacters/README.md) | Easy | [LeetCode](https://leetcode.com/problems/1-bit-and-2-bit-characters) | Array |
| 110 | [1-bit-and-2-bit-characters](src/1-bit-and-2-bit-characters/index.ts) | [:green_book:](src/1-bit-and-2-bit-characters/README.md) | Easy | [LeetCode](https://leetcode.com/problems/1-bit-and-2-bit-characters) | Array |
| 111 | [CanPlaceFlowers](src/canPlaceFlowers/index.ts) | [:green_book:](src/canPlaceFlowers/README.md) | Easy | [LeetCode](https://leetcode.com/problems/can-place-flowers) | Array |
| 112 | [FindAllNumbersDisappearedInAnArray](src/findAllNumbersDisappearedInAnArray/index.ts) | [:green_book:](src/findAllNumbersDisappearedInAnArray/README.md) | Easy | [LeetCode](https://leetcode.com/problems/find-all-numbers-disappeared-in-an-array) | Array |
| 113 | [ContainerWithMostWater](src/containerWithMostWater/index.ts) | [:green_book:](src/containerWithMostWater/README.md) | Medium | [LeetCode](https://leetcode.com/problems/container-with-most-water) | Array |
Expand Down Expand Up @@ -200,10 +200,10 @@ npm run test // also you can run `npm run watch`
| 162 | [ProductOfArrayExceptSelf](src/productOfArrayExceptSelf/index.ts) | [:green_book:](src/productOfArrayExceptSelf/README.md) | Medium | [LeetCode](https://leetcode.com/problems/product-of-array-except-self) | Array |
| 163 | [TeemoAttacking](src/teemoAttacking/index.ts) | [:green_book:](src/teemoAttacking/README.md) | Medium | [LeetCode](https://leetcode.com/problems/teemo-attacking) | Array |
| 164 | [QueueReconstructionByHeight](src/queueReconstructionByHeight/index.ts) | [:green_book:](src/queueReconstructionByHeight/README.md) | Medium | [LeetCode](https://leetcode.com/problems/queue-reconstruction-by-height) | Greedy |
| 165 | [4Sum2](src/4Sum2/index.ts) | [:green_book:](src/4Sum2/README.md) | Medium | [LeetCode](https://leetcode.com/problems/4sum-ii) | HashTable |
| 166 | [01Matrix](src/01Matrix/index.ts) | [:green_book:](src/01Matrix/README.md) | Medium | [LeetCode](https://leetcode.com/problems/01-matrix) | HashTable |
| 165 | [4sum-ii](src/4sum-ii/index.ts) | [:green_book:](src/4sum-ii/README.md) | Medium | [LeetCode](https://leetcode.com/problems/4sum-ii) | HashTable |
| 166 | [01-matrix](src/01-matrix/index.ts) | [:green_book:](src/01-matrix/README.md) | Medium | [LeetCode](https://leetcode.com/problems/01-matrix) | HashTable |
| 167 | [3sum](src/3sum/index.ts) | [:green_book:](src/3sum/README.md) | Medium | [LeetCode](https://leetcode.com/problems/3sum) | TwoPointers |
| 168 | [3SumClosest](src/3SumClosest/index.ts) | [:green_book:](src/3SumClosest/README.md) | Medium | [LeetCode](https://leetcode.com/problems/3sum-closest) | TwoPointers |
| 168 | [3sum-closest](src/3sum-closest/index.ts) | [:green_book:](src/3sum-closest/README.md) | Medium | [LeetCode](https://leetcode.com/problems/3sum-closest) | TwoPointers |
| 169 | [4Sum](src/4Sum/index.ts) | [:green_book:](src/4Sum/README.md) | Medium | [LeetCode](https://leetcode.com/problems/4sum) | TwoPointers |
| 170 | [AddTwoNumbers](src/addTwoNumbers/index.ts) | [:green_book:](src/addTwoNumbers/README.md) | Medium | [LeetCode](https://leetcode.com/problems/add-two-numbers) | LinkedList |
| 171 | [AddTwoNumbers2](src/addTwoNumbers2/index.ts) | [:green_book:](src/addTwoNumbers2/README.md) | Medium | [LeetCode](https://leetcode.com/problems/add-two-numbers-ii) | LinkedList |
Expand Down Expand Up @@ -254,7 +254,7 @@ npm run test // also you can run `npm run watch`
| 216 | [BestTimetoBuyAndSellStockWithTransactionFee](src/bestTimetoBuyAndSellStockWithTransactionFee/index.ts) | [:green_book:](src/bestTimetoBuyAndSellStockWithTransactionFee/README.md) | Medium | [LeetCode](https://leetcode.com/problems/best-time-to-buy-and-sell-stock-with-transaction-fee) | DP,Greedy |
| 217 | [ShoppingOffers](src/shoppingOffers/index.ts) | [:green_book:](src/shoppingOffers/README.md) | Medium | [LeetCode](https://leetcode.com/problems/shopping-offers) | DP,DFS |
| 218 | [PredictTheWinner](src/predictTheWinner/index.ts) | [:green_book:](src/predictTheWinner/README.md) | Medium | [LeetCode](https://leetcode.com/problems/predict-the-winner) | DP |
| 219 | [2KeysKeyboard](src/2KeysKeyboard/index.ts) | [:green_book:](src/2KeysKeyboard/README.md) | Medium | [LeetCode](https://leetcode.com/problems/2-keys-keyboard) | DP |
| 219 | [2-keys-keyboard](src/2-keys-keyboard/index.ts) | [:green_book:](src/2-keys-keyboard/README.md) | Medium | [LeetCode](https://leetcode.com/problems/2-keys-keyboard) | DP |
| 220 | [IsSubsequence](src/isSubsequence/index.ts) | [:green_book:](src/isSubsequence/README.md) | Medium | [LeetCode](https://leetcode.com/problems/is-subsequence) | DP |
| 221 | [delete-and-earn](src/delete-and-earn/index.ts) | [:green_book:](src/delete-and-earn/README.md) | Medium | [LeetCode](https://leetcode.com/problems/delete-and-earn) | DP |
| 222 | [unique-paths](src/unique-paths/index.ts) | [:green_book:](src/unique-paths/README.md) | Medium | [LeetCode](https://leetcode.com/problems/unique-paths) | DP |
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
6 changes: 0 additions & 6 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,6 @@ export * from './maximumProductOfThreeNumbers'
export * from './complexNumberMultiplication'
export * from './uglyNumber2'
export * from './validSquare'
export * from './1bitAnd2bitCharacters'
export * from './canPlaceFlowers'
export * from './findAllNumbersDisappearedInAnArray'
export * from './containerWithMostWater'
Expand Down Expand Up @@ -154,11 +153,6 @@ export * from './rotateString'
export * from './productOfArrayExceptSelf'
export * from './teemoAttacking'
export * from './queueReconstructionByHeight'
export * from './4Sum2'
export * from './01Matrix'
export * from './3Sum'
export * from './3SumClosest'
export * from './4Sum'
export * from './addTwoNumbers'
export * from './addTwoNumbers2'
export * from './additiveNumber'
Expand Down

0 comments on commit 913ab5e

Please sign in to comment.