Practice C++

Basic Challenges

Challenge 1: FizzBuzz

Write a program that prints numbers from 1 to 100. For multiples of 3, print "Fizz". For multiples of 5, print "Buzz". For numbers that are multiples of both 3 and 5, print "FizzBuzz".

main.cpp
Output
Ready
 

Advanced Challenges

Challenge 2: Binary Search Tree

Implement a binary search tree with insert and search operations.

main.cpp
Output
Ready
 

Algorithm Challenges

Challenge 3: Merge Sort

Implement the merge sort algorithm.

main.cpp
Output
Ready