• + 0 comments

    C++ (more at https://github.com/IhorVodko/Hackerrank_solutions/tree/master , feel free to give a star :) )

    std::string gameOfStones(int _stones){
        return  _stones % 7 == 0 || _stones % 7 == 1 ? 
                "Second" : "First"
        ;
    }