This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"translatorID": "2340c575-cc2e-47de-aa7a-062f3a91c641", | |
"label": "du4 URI Export", | |
"creator": "Florent Dufour", | |
"target": "html", | |
"minVersion": "5.0", | |
"maxVersion": "", | |
"priority": 100, | |
"inRepository": true, | |
"translatorType": 2, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@PostConstruct | |
private void initYears() { | |
Integer start = 2015; | |
Integer now = Year.now().getValue(); | |
List<Integer> range = IntStream.rangeClosed(start, now).boxed().sorted(Collections.reverseOrder()) | |
.collect(Collectors.toList()); | |
List<AnneeUniversitaire> rangeAnnees = new ArrayList<>(); | |
range.forEach(i -> { | |
rangeAnnees.add(new AnneeUniversitaire(i)); | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PROGRAM:DM | |
Input "Indiquez la valeur de N: ", N | |
{1} -> L1 | |
For(K,1,N) | |
reste(N,K) -> R | |
If R=0 | |
augmenter(L1,{K})->L1 | |
END | |
dim(L1)-1 -> X |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/python3 | |
##Florent DUFOUR | |
###Novembre 2017 | |
## -- IMPORTATIONS -- ## | |
import pandas as pd | |
import numpy as np | |
import matplotlib.pyplot as plt |