Skip to content

Commit 6c7a64e

Browse files
committed
delete some unfitable package
1 parent cda43e0 commit 6c7a64e

File tree

6 files changed

+2
-215
lines changed

6 files changed

+2
-215
lines changed

README.md

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1037,17 +1037,6 @@ You can also ask for problem solving ideas and discuss in GitHub issues directly
10371037

10381038

10391039

1040-
### Practice
1041-
1042-
| # | Title | Solutions | Difficulty | Tag
1043-
|-----|----------------|:---------------:|:--------:|:-------------:
1044-
|Question 1|[Fibonacci](https://github.com/guobinhit/myleetcode/blob/master/codes/java/leetcodes/src/main/java/com/hit/interview/Fibonacci.java) | [Java](https://github.com/guobinhit/myleetcode/blob/master/codes/java/leetcodes/src/main/java/com/hit/basinfo/interview/Fibonacci.java) & Python|![easy](https://github.com/guobinhit/myleetcode/blob/master/images/easy.png)| Fibonacci Sequence
1045-
|Question 2|[Compare Binary and Hexadecimal](https://github.com/guobinhit/myleetcode/blob/master/codes/java/leetcodes/src/main/java/com/hit/interview/CompareBinToHex.java) | [Java](https://github.com/guobinhit/myleetcode/blob/master/codes/java/leetcodes/src/main/java/com/hit/basinfo/interview/CompareBinToHex.java) & Python|![easy](https://github.com/guobinhit/myleetcode/blob/master/images/easy.png)| Binary Conversion
1046-
|Question 3|[Fast Output Prime Numbers](https://github.com/guobinhit/myleetcode/blob/master/codes/java/leetcodes/src/main/java/com/hit/interview/SieveOfEratosthenes.java) | [Java](https://github.com/guobinhit/myleetcode/blob/master/codes/java/leetcodes/src/main/java/com/hit/basinfo/interview/SieveOfEratosthenes.java) & Python|![easy](https://github.com/guobinhit/myleetcode/blob/master/images/easy.png)| Sieve of Eratosthenes
1047-
1048-
1049-
1050-
10511040

10521041

10531042
------------

codes/java/leetcodes/src/main/java/com/hit/basinfo/base_data_structure/SimpleQueue.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* author:Charies Gavin
77
* date:2019/1/21,11:39
88
* https:github.com/guobinhit
9-
* description: 简单的队列
9+
* description: Simple Queue
1010
*/
1111
public class SimpleQueue {
1212
ListNode first, last;

codes/java/leetcodes/src/main/java/com/hit/basinfo/base_data_structure/SimpleStack.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* author:Charies Gavin
77
* date:2019/1/21,11:30
88
* https:github.com/guobinhit
9-
* description: 简单的栈
9+
* description: Simple Stack
1010
*/
1111
public class SimpleStack {
1212
ListNode top;

codes/java/leetcodes/src/main/java/com/hit/basinfo/interview/CompareBinToHex.java

Lines changed: 0 additions & 70 deletions
This file was deleted.

codes/java/leetcodes/src/main/java/com/hit/basinfo/interview/Fibonacci.java

Lines changed: 0 additions & 45 deletions
This file was deleted.

codes/java/leetcodes/src/main/java/com/hit/basinfo/interview/SieveOfEratosthenes.java

Lines changed: 0 additions & 87 deletions
This file was deleted.

0 commit comments

Comments
 (0)