MCPcopy Create free account
hub / github.com/Ainevsia/Leetcode-Rust / main

Function main

679. 24 Game/Solution.cpp:99–116  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

97};
98
99int main() {
100 Solution a;
101 vector<int> v ;
102 vector<vector<int>> b;
103 b.push_back(v);
104 v.clear();
105 // v.push_back(4);
106 // v.push_back(1);
107 // v.push_back(8);
108 // v.push_back(7);
109 v.push_back(1);
110 v.push_back(3);
111 v.push_back(4);
112 v.push_back(6);
113 auto x = a.judgePoint24(v);
114 cout << x;
115 return 0;
116}
117

Callers

nothing calls this directly

Calls 1

judgePoint24Method · 0.80

Tested by

no test coverage detected