Skip to content

Instantly share code, notes, and snippets.

View Eroui's full-sized avatar

EROUI Abdelaziz Eroui

  • Google
  • Dublin, Ireland
View GitHub Profile
@Eroui
Eroui / primes.cpp
Last active June 8, 2017 18:00 — forked from chermehdi/primes.cpp
for each given N find it's prime factors problem propsed in scorify challange .
#include <stdio.h>
#include <string.h>
#include <math.h>
#include <stdlib.h>
int nextInt(){
int a; scanf("%d", &a); return a;
}
long long nextLong(){