Task Description:
In this exercise, you are required to create a simple Ruby on Rails API endpoint. This task is designed to assess your knowledge of Rails routing, controllers, and basic data handling.
Duration:
20 minutes
Objective:
| from flask import Flask, request, Response | |
| import requests | |
| import json | |
| app = Flask(__name__) | |
| OLLAMA_URL = "http://localhost:11434/v1" | |
| def forward(path, body): | |
| try: |
Your task is to convert a number into a string that contains raindrop sounds corresponding to certain potential factors. A factor is a number that evenly divides into another number, leaving no remainder. The simplest way to test if a number is a factor of another is to use the modulo operation.
The rules of raindrops are that if a given number:
| class GuessGame | |
| GUESS = 10 | |
| def initialize(player_name) | |
| @player_name = player_name | |
| @number = generate_number | |
| @attempts = 1 | |
| play | |
| end | |
| def try_to_guess |