Skip to content

Commit 9b76509

Browse files
committed
fix path
1 parent d8f86e8 commit 9b76509

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ cargo test
4040
#### Bit Manipulation
4141
| # | Title | Solution | Time | Space | Difficulty | Tag | Note|
4242
|-----|---------------- | --------------- | --------------- | --------------- | ------------- |--------------|-----|
43-
0136 | [Single Number](https://leetcode.com/problems/single-number/) | [C++](https://github.com/kamyu104/LeetCode-Solutions/blob/master/C++/single-number.cpp) <br> [Python](https://github.com/kamyu104/LeetCode-Solutions/blob/master/Python/single-number.py) <br> [Rust](./kamyu104/src/single-number.rs) | _O(n)_ | _O(1)_ | Easy |||
43+
0136 | [Single Number](https://leetcode.com/problems/single-number/) | [C++](https://github.com/kamyu104/LeetCode-Solutions/blob/master/C++/single-number.cpp) <br> [Python](https://github.com/kamyu104/LeetCode-Solutions/blob/master/Python/single-number.py) <br> [Rust](./kamyu104/src/single_number.rs) | _O(n)_ | _O(1)_ | Easy |||
4444

4545
<!--
4646
0137 | [Single Number II](https://leetcode.com/problems/single-number-ii/) | [C++](./C++/single-number-ii.cpp) [Python](./Python/single-number-ii.py) | _O(n)_ | _O(1)_ | Medium |||

kamyu104/src/main.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
mod example;
1+
mod example;
2+
mod single_number;

0 commit comments

Comments
 (0)