Category talk:Programming Tasks: Difference between revisions

(list of programming tasks without the solution)
 
(9 intermediate revisions by 6 users not shown)
Line 30:
How do I add my code example and get these included in the list so others can contribute their versions in the other languages?
 
== Singly-linked list/Arbitrary Number Multiplication ==
== Get a list of programming tasks without the solutions ==
 
This program aims to multiply 2 arbitrary-length decimal numbers and returns the output in decimal number format by using linked list structure.
I'm going on a long plane trip. I'd like to take a printout of all the tasks but without the solutions. I have in mind to solve some of the solutions on paper whilst airborne, taking the list of solutions and the programming language manual.
 
== Producer-Consumer Pattern
 
This task demonstrates examples of the producer-consumer pattern in the chosen language. There are several variations on the producer-consumer pattern including synchronous, asynchronous, bounded queue, and unbounded queue. The simplest implementation of a producer-consumer has one producing task or thread and one consuming task or thread. More complex implementations may have 1..P producers and 1..C consumers. The number of producers and consumers need not be the same. A producer-consumer implementation may require that every data item produced by the producer(s) must be consumed exactly once by one of the consumers, or it may require that the consumer(s) only sample the data produced by the producer(s). An example of a sampling application might be an automated weather station. The weather station may produce temperature readings at a rate of 100Hz while the consumer displaying those readings on a website may only display changes at a rate of 1Hz. The consumer only needs to display one reading per second and can ignore 99 readings every second.
 
=How to filter Programming Tasks?=
Example: How to list all programming tasks, for which a solution in a given language is missing?
:Before Rosetta Code moved to Miraheze there used to be a nice subpage for that on every language, but for now I guess you'll have to try using [[Rosetta_Code/Find_unimplemented_tasks]] --[[User:Petelomax|Petelomax]] ([[User talk:Petelomax|talk]]) 08:04, 11 January 2023 (UTC)
7,794

edits