Game Catch the Fruit buatan kami ini adalah game berbasis "Survival" yang dibuat dalam Scratch. Game ini dibuat dengan tujuan memenuhi tugas akhir mata kuliah STI.
Game ini terinspirasi oleh salah satu game mode pada suatu game rhytm bernama "osu!", dengan sedikit variasi sebuah buff...
Sabtu, 16 Desember 2017
Minggu, 10 Desember 2017
Merge Sort Array With Recursion
Problem:
Write and test a merge function that uses a recursive algorithm to merge
two sorted arrays of integers. Neither list contains duplicates, and the
resulting list should not contain duplicates either. Hint : You may want to
call a helper function from merge.
Answer:
#include<stdio.h>
int arrA[100],arrB[100],arrC[100],arrD[100];
int...