Skip to content

Instantly share code, notes, and snippets.

View wareval0's full-sized avatar

Wilmer Arévalo wareval0

View GitHub Profile
[
{
"id": 1,
"name": "Sede las Aguas",
"address": "Calle 19 #3-01",
"phoneNumber": "0123456789",
"schedule": "L-V: 09:00 a.m. - 06:00 p.m."
},
{
"id": 2,
[
{"name": "ATLETISMO", "icon": "https://cdn-icons-png.flaticon.com/512/384/384276.png"},
{"name": "NATACIÓN", "icon": "https://cdn-icons-png.flaticon.com/512/12698/12698882.png"},
{"name": "TENIS", "icon": "https://cdn-icons-png.flaticon.com/512/2317/2317999.png"}
]
{
"id": 1,
"name": "Wilmer Manuel Arévalo González",
"cc": "1069718537",
"age": 20,
"eps": "E.P.S. FAMISANAR LTDA.",
"gender": "Male"
}
{
"id": "user_001",
"tags": ["vegetarian", "vegan", "gluten-free"],
"subscribed_restaurants": [
{ "tags": ["healthy", "juices", "grilled"] },
{ "tags": ["vegetarian", "arepas", "colombian"] }
],
"reservations": [
{ "restaurant": { "tags": ["asian", "noodles", "gluten-free"] } },
{ "restaurant": { "tags": ["creole", "chicken", "fried"] } }
[
{
"id": "r1",
"name": "Green Bites",
"tags": [
"healthy",
"pizza"
],
"rating": 5.0,
"comments": [
[
{
"name": "Rad's Bakery",
"rating": "4.2",
"time": "1:30 pm - 2:00 pm",
"bitesAmount": "1",
"image": "https://images.pexels.com/photos/1397292/pexels-photo-1397292.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2"
},
{
"name": "Sweet Crust",
{
"id": 1,
"fullname": "Camilo Escobar",
"image": "https://cdn-icons-png.flaticon.com/512/706/706831.png"
}
[{
"id": 1,
"city": "Ängelholm",
"distance": 15,
"time": "4:54"
}, {
"id": 2,
"city": "Carvalho",
"distance": 5,
"time": "2:31"
@wareval0
wareval0 / test.jj
Last active September 27, 2024 01:50
options
{
static = false;
}
PARSER_BEGIN(ParserMartianBase)
package parsers.ParserMartianBase;
import java.util.*;
public class ParserMartianBase {
@wareval0
wareval0 / Test.java
Last active February 12, 2024 21:18
public class Test {
public static void main(String[] args) {
long start = System.nanoTime();
//System.out.println(fibRecursivo(20));
//System.out.println(fibPDTopDown(1000000));
//System.out.println(fibPDBottomUp(1000000000));
long end = System.nanoTime();
long executionTime = end - start;
double executionTimeInMilliseconds = executionTime / 1_000_000.0;
System.out.println("Function execution time: " + executionTimeInMilliseconds + " milliseconds");