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