Arista Networks interview question

C++: implement a generic stack without using any STL library. Very strict on performance and exceptions, almost like to reproduce std::stack

Interview Answer

Anonymous

10 Feb 2024

using template and array for data saving. still not good enough.

1