Skip to content

Instantly share code, notes, and snippets.

View Eroui's full-sized avatar

EROUI Abdelaziz Eroui

  • Google
  • Dublin, Ireland
View GitHub Profile
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://cdn.plot.ly/plotly-latest.min.js"></script>
<title>Plotly Arrow Plot</title>
</head>
<body>
@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(){