We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e025fe commit bb5a5e7Copy full SHA for bb5a5e7
tests/hackerrank/warmup/compare_triplets.rs
@@ -10,13 +10,13 @@ mod tests {
10
use super::*;
11
12
#[derive(Debug, Deserialize)]
13
- struct SolveMeFirstTestCase {
+ struct CompareTripletsTestCase {
14
a: Vec<i32>,
15
b: Vec<i32>,
16
expected: Vec<i32>
17
}
18
19
- static TEST_DATA: Lazy<Vec<SolveMeFirstTestCase>> =
+ static TEST_DATA: Lazy<Vec<CompareTripletsTestCase>> =
20
Lazy::new(|| load_json("tests/data/hackerrank/warmup/compare_triplets.testcases.json"));
21
22
#[test]
0 commit comments