Skip to content

Instantly share code, notes, and snippets.

View digitaldreams's full-sized avatar
🏠
Working from home

Tuhin Bepari digitaldreams

🏠
Working from home
View GitHub Profile
@digitaldreams
digitaldreams / challenge.php
Created November 30, 2018 03:22
Wilber Group Code Challenge
$people = '{"data":[{"first_name":"jake","last_name":"bennett","age":31,"email":"jake@bennett.com","secret":"VXNlIHRoaXMgc2VjcmV0IHBocmFzZSBzb21ld2hlcmUgaW4geW91ciBjb2RlJ3MgY29tbWVudHM="},{"first_name":"jordon","last_name":"brill","age":85,"email": "jordon@brill.com","secret":"YWxidXF1ZXJxdWUuIHNub3JrZWwu"}]}';
class priority extends SplHeap
{
public function compare($array1, $array2)
{
if ($array1['age'] > $array2['age']) {
return 1;
} elseif ($array1['age'] == $array2['age']) {
return 0;