TODO finish
This commit is contained in:
parent
a65445d666
commit
1bd4104c41
|
@ -129,7 +129,18 @@ namespace HegyekMO
|
||||||
|
|
||||||
public static void Feladat8()
|
public static void Feladat8()
|
||||||
{
|
{
|
||||||
Dictionary<Hegy, int>
|
Dictionary<string, int> Csoportositotthegyek = new Dictionary<string, int>();
|
||||||
|
foreach (var item in Data.hegyek)
|
||||||
|
{
|
||||||
|
if (!Csoportositotthegyek.ContainsKey(item.Hegyseg))
|
||||||
|
{
|
||||||
|
Csoportositotthegyek.Add(item.Hegyseg, 1);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
Csoportositotthegyek[item.Hegyseg]++;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user