leetcode

Solution to some Leetcode problems written in C++
git clone git://git.dimitrijedobrota.com/leetcode.git
Log | Files | Refs | README | LICENSE

2469.cpp (157B)


      1 class Solution {
      2   public:
      3     vector<double> convertTemperature(double celsius) const {
      4         return {celsius + 273.15, celsius * 1.80 + 32.00};
      5     }
      6 };