// // Created by alex on 11/1/23. // #include #include #include #ifndef EMPIRICAL_ELEMENT_H #define EMPIRICAL_ELEMENT_H using namespace std; class Element { private: static const map weights; public: static double getWeight(const string& name); //Return a string representation of empirical formula static string find_empirical(map elms); }; #endif //EMPIRICAL_ELEMENT_H