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 bfac7d7 commit 9c345f0Copy full SHA for 9c345f0
UnitTest/DataStructuresTests/HashTableSeparateChainingTest.cs
@@ -9,6 +9,7 @@ public static class HashTableSeparateChainingTest
9
[Fact]
10
public static void DoTest()
11
{
12
+ // TEST ADD KEY-VALUE PAIRS
13
var studentsMarks = new ChainedHashTable<string, int>
14
15
{"Konstantinos", 124},
@@ -35,10 +36,6 @@ public static void DoTest()
35
36
{"Test888888888", 3210}
37
};
38
- //
39
- // TEST ADD KEY-VALUE PAIRS
40
-
41
42
// TEST FETCH KEY-VALUE
43
var mark = studentsMarks["Ahmad"];
44
Assert.True(mark == 924);
0 commit comments