diff --git a/README.md b/README.md index 200a58a..b487f85 100644 --- a/README.md +++ b/README.md @@ -49,9 +49,9 @@ cargo test | # | Title | Solution | Time | Space | Difficulty | Tag | Note| |-----|---------------- | --------------- | --------------- | --------------- | ------------- |--------------|-----| 0136 | [Single Number](https://leetcode.com/problems/single-number/) | [C++](https://github.com/kamyu104/LeetCode-Solutions/blob/master/C++/single-number.cpp)
[Python](https://github.com/kamyu104/LeetCode-Solutions/blob/master/Python/single-number.py)
[Rust](./kamyu104/src/single_number.rs) | _O(n)_ | _O(1)_ | Easy ||| +0137 | [Single Number II](https://leetcode.com/problems/single-number-ii/) | [C++](https://github.com/kamyu104/LeetCode-Solutions/blob/master/C++/single-number-ii.cpp)
[Python](https://github.com/kamyu104/LeetCode-Solutions/blob/master/Python/single-number-ii.py)
[Rust](./kamyu104/src/single_number_ii.rs) | _O(n)_ | _O(1)_ | Medium |||