알고리즘 26 - Is he gonna survive?

tamagoyakii·2021년 10월 9일
0

알고리즘

목록 보기
26/89

Q.

A hero is on his way to the castle to complete his mission. However, he's been told that the castle is surrounded with a couple of powerful dragons! each dragon takes 2 bullets to be defeated, our hero has no idea how many bullets he should carry.. Assuming he's gonna grab a specific given number of bullets and move forward to fight another specific given number of dragons, will he survive?

Return True if yes, False otherwise :)

A)

#include <stdbool.h>
#include <stdint.h>

bool hero(uint32_t bullets, uint32_t dragons) {
  return bullets >= dragons * 2;
}

0개의 댓글