AI/ML Engineer
NeuralNet Innovations
Full-time
New York, NY
About the Role
Join NeuralNet Innovations to develop machine learning models that solve real-world problems. You will be responsible for the full lifecycle of model development, from data preprocessing to deployment and monitoring.
Skills & Requirements
Python
TensorFlow
PyTorch
Scikit-learn
AWS
Coding Challenge
FizzBuzz Implementation
Implement the classic FizzBuzz problem in Python. Write a function that prints numbers from 1 to 100, but for multiples of three, print "Fizz" instead of the number, and for the multiples of five, print "Buzz". For numbers which are multiples of both three and five, print "FizzBuzz".
def fizzbuzz():
# Your code here
pass
fizzbuzz()