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
{ | |
"$schema": "https://raw.githubusercontent.com/jsonresume/resume-schema/v1.0.0/schema.json", | |
"basics": { | |
"name": "Mohamed Mekkaoui", | |
"label": "Consultant Magento", | |
"image": "", | |
"email": "[email protected]", | |
"phone": "+33 7 60 37 48 48", | |
"url": "", | |
"summary": "Diplômé en génie logiciel, passionné par l'e-Commerce, la Business Intelligence, et l'évolution des technologies JavaScript, avec un intérêt récent pour les modèles de langage (LLMs & IA)", |
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
import java.io.*; | |
import java.util.*; | |
import java.text.*; | |
import java.math.*; | |
import java.util.regex.*; | |
public class Solution { | |
public static void main(String[] args) { | |
Scanner in = new Scanner(System.in); |
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
import java.io.*; | |
import java.util.*; | |
class Node { | |
int data; | |
Node next; | |
Node(int d) { | |
data = d; | |
next = null; | |
} |