Can you handle business related challenge. Finding aging, running balances, variances?👀
Читать полностью…I am sure this can be done in one line of python 😅 but I don't know much python.
In php you'd need a bunch of variables from one expression to the next
for example, given the amount 2035, you need:
Two 1000 notes
One 20 shilling coin
One 10 shilling coin
One 5 shilling coin
For anyone intrested in knowing cloud computing check out this link https://www.youtube.com/watch?v=q9EudSINGAg&list=PLMTciOfb1hbRCCTGJrfYTrobXw7pDIY6l&ab_channel=THOMASAMBETSA dont forget to like comment and share
Читать полностью…Are you a fan of kenyan football, check out this livescore app. It's purely meant for kenyan football and major competitions in Africa https://play.google.com/store/apps/details?id=com.jammo.app.jammoapp
Читать полностью…<?phpЧитать полностью…
$notes = array(1000,500,200,100,50,20,10,5,1);
$counter = [];
function parse($amount, $counter)
{
global $notes;
if ($amount <= 0)
{
return $counter;
}
foreach ($notes as $note)
{
if ($amount >= $note)
{
$amount = $amount - $note;
if (empty($counter[$note.""]))
{
$counter[$note.""] = 0;
}
$counter[$note.""] = $counter[$note.""] + 1;
return parse($amount, $counter);
}
}
return $counter;
}
// example
$counter = parse(2035, $counter);
print_r($counter);
Given any amount, determine which of Kenya's accepted legal tender (except 1 shilling and 50 cent coins), is needed to constitute that amount
Читать полностью…Get bulk SMS at flat rate of@ 0.39. Sender ID at @4990 per Network. We also allow Sender ID Transfer at no cost. Contact us for more information 0721512910
Читать полностью…Get bulk SMS at flat rate of@ 0.39. Sender ID at @4990 per Network. We also allow Sender ID Transfer at no cost. Contact us for more information
Читать полностью…That line is geared towards mobile development - totally not required but could be useful if they had it
Читать полностью…The requirements are somehow interesting, they are looking for a php dev but java is an added advantage? 🤔 🤔
Читать полностью…