Skip to content

Commit 5baae86

Browse files
committed
add start line
1 parent 0e99959 commit 5baae86

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed

src/solution/s0074_search_a_2d_matrix.rs

+2
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@
3636
*/
3737
pub struct Solution {}
3838

39+
// submission codes start here
40+
3941
impl Solution {
4042
pub fn search_matrix(matrix: Vec<Vec<i32>>, target: i32) -> bool {
4143
if matrix.is_empty() {

src/solution/s0086_partition_list.rs

+2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616
pub struct Solution {}
1717
use crate::util::linked_list::{to_list, ListNode};
1818

19+
// submission codes start here
20+
1921
impl Solution {
2022
pub fn partition(head: Option<Box<ListNode>>, x: i32) -> Option<Box<ListNode>> {
2123
let mut lower = Some(Box::new(ListNode::new(0)));

src/solution/s0149_max_points_on_a_line.rs

+2
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@
3838
pub struct Solution {}
3939
use crate::util::point::Point;
4040

41+
// submission codes start here
42+
4143
/*
4244
要回顾下高中数学:已知两点, 求解一般式:
4345

0 commit comments

Comments
 (0)