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
[ | |
{ | |
"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, |
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
[ | |
{"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"} | |
] |
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
{ | |
"id": 1, | |
"name": "Wilmer Manuel Arévalo González", | |
"cc": "1069718537", | |
"age": 20, | |
"eps": "E.P.S. FAMISANAR LTDA.", | |
"gender": "Male" | |
} |
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
{ | |
"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"] } } |
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
[ | |
{ | |
"id": "r1", | |
"name": "Green Bites", | |
"tags": [ | |
"healthy", | |
"pizza" | |
], | |
"rating": 5.0, | |
"comments": [ |
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
[ | |
{ | |
"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", |
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
{ | |
"id": 1, | |
"fullname": "Camilo Escobar", | |
"image": "https://cdn-icons-png.flaticon.com/512/706/706831.png" | |
} |
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
[{ | |
"id": 1, | |
"city": "Ängelholm", | |
"distance": 15, | |
"time": "4:54" | |
}, { | |
"id": 2, | |
"city": "Carvalho", | |
"distance": 5, | |
"time": "2:31" |
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
options | |
{ | |
static = false; | |
} | |
PARSER_BEGIN(ParserMartianBase) | |
package parsers.ParserMartianBase; | |
import java.util.*; | |
public class ParserMartianBase { |
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
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"); |
NewerOlder