arudradey's picture
Upload folder using huggingface_hub
00df61d verified
Raw
History Blame Contribute Delete
76 Bytes
#include <stdlib.h>
long long llabs(long long a)
{
return a>0 ? a : -a;
}