Skip to content

Commit 5552d15

Browse files
committedFeb 19, 2020
add problem and discuss link to existing solutions
1 parent 5baae86 commit 5552d15

File tree

237 files changed

+711
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

237 files changed

+711
-0
lines changed
 

‎src/solution/s0001_two_sum.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@
1818
*/
1919
pub struct Solution {}
2020

21+
// problem: https://leetcode.com/problems/two-sum/
22+
// discuss: https://leetcode.com/problems/two-sum/discuss/?currentPage=1&orderBy=most_votes&query=
23+
2124
// submission codes start here
2225

2326
use std::collections::HashMap;

‎src/solution/s0002_add_two_numbers.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@
1919
pub struct Solution {}
2020
use crate::util::linked_list::{to_list, ListNode};
2121

22+
// problem: https://leetcode.com/problems/add-two-numbers/
23+
// discuss: https://leetcode.com/problems/add-two-numbers/discuss/?currentPage=1&orderBy=most_votes&query=
24+
2225
// submission codes start here
2326

2427
impl Solution {

0 commit comments

Comments
 (0)
Please sign in to comment.