10 lines
219 B
C++
10 lines
219 B
C++
#ifndef __EXAMPLE_H__
|
|
#define __EXAMPLE_H__
|
|
|
|
#include <unordered_map>
|
|
|
|
// Function to calculate the sum of values in an unordered_map
|
|
int SumMapValues(const std::unordered_map<int, int> &map);
|
|
|
|
#endif // __EXAMPLE_H__
|